我创建了一个名为 Professionals 的自定义帖子类型。我正在使用 Divi Theme Builder 来显示每个专业人士都有自己的动态内容(使用高级自定义字段)。在每个专业页面的底部,我想添加一个 divi 博客模块,显示他们最近的 3 篇博客文章。这是我到目前为止所拥有的 - 但页面上没有显示任何内容。
function add_author_recent_posts() {
$author = get_the_author(); // defines your author ID if it is on the post in question
$args = array(
'post_type' => 'professionals',
'post_status' => 'publish',
'author'=>$author,
'posts_per_page' => 3, // the number of posts you'd like to show
'orderby' => 'date',
'order' => 'DESC'
);
$results = new WP_Query($args);
while ($results->have_posts()) {
$results->the_post();
the_title();
echo '</hr>'; // puts a horizontal line between results if necessary
}
}
add_action( 'init', 'add_author_recent_posts' );