Skip to content

Instantly share code, notes, and snippets.

@samholguin
Last active August 29, 2015 14:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samholguin/67700353fccf9f2b08b4 to your computer and use it in GitHub Desktop.
Save samholguin/67700353fccf9f2b08b4 to your computer and use it in GitHub Desktop.
WordPress - Action [ the_post ] - Modify the WordPress post object
/**
* Modify the WordPress post object
*
* @param obj $post_object
* @return obj
*/
function shgist_my_the_post_action( $post_object ) {
// modify post object here
}
add_action( 'the_post', 'shgist_my_the_post_action' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment