When you’re working in Pods Templates, occasionally you need to show some of those great WordPress functions about the Post Author. Did you know you can often just push the post_author into a function as part of your WordPress Template? These are all done using the Display Filters in Pods Templates. Here’s a few useful examples:
Post Author Output
Display the Author’s real name in a Pods Template:
{@post_author,get_the_author}
Show the Last Modified Author
This is a WordPress Function: get_the_modified_author. Since that function expects the ID of the current post, you can output the last modified author using:
{@ID,get_the_modified_author}. {@ID} contains the current post’s id.