get_the_author_metaで著者IDを取得
1 2 3 |
<?php $author_id = get_the_author_meta('ID'); ?> |
WP_Queryに応用
著者 IDで記事を絞り込むことができます。
1 2 3 4 5 6 7 8 9 |
<?php $author_id = get_the_author_meta('ID'); args = array( 'post_type' => 'post', 'orderby' => 'date', 'author__in' => $author_id, ); $the_query = new WP_Query($args); ?> |
コメント