Created
December 18, 2012 00:39
-
-
Save hissy/4323847 to your computer and use it in GitHub Desktop.
ループ内のカスタムフィールドの書き方を3.5でもそれ以下でも動くように書こうとしたらたぶんこうなるよね。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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