Skip to content

Instantly share code, notes, and snippets.

@hissy
Created December 18, 2012 00:39
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 hissy/4323847 to your computer and use it in GitHub Desktop.
Save hissy/4323847 to your computer and use it in GitHub Desktop.
ループ内のカスタムフィールドの書き方を3.5でもそれ以下でも動くように書こうとしたらたぶんこうなるよね。
$myposts = get_posts($args);
foreach ( $myposts as $post ) :
if ( ! is_a( $post, 'WP_Post' ) ) {
$post->meta_key = get_post_meta( $post->ID, 'meta_key', true );
}
echo $post->meta_key;
endforeach;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment