Skip to content

Instantly share code, notes, and snippets.

@tomjn
Created October 21, 2014 16:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save tomjn/5bdffbf207156fd462d9 to your computer and use it in GitHub Desktop.
Save tomjn/5bdffbf207156fd462d9 to your computer and use it in GitHub Desktop.
Thinking out loud on functional programming
<?php
global $wp_query;
array_walk( $wp_query->posts, function( $post, $key ) {
setup_postdata( $post );
the_title();
the_content();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment