在我们当前的网站上,我们有不同的公司简介。有些公司的博客文章会显示在他们的个人资料上,有些则没有。它们是页面模板中帖子上方的 h2 标记,然后是引入帖子的代码。代码看起来像这样。
<h2>Recent Blog Articles</a></h2>
<?php echo get_related_author_posts(); ?>
我正在尝试找到一种方法,以便如果他们没有公司的帖子,则不会显示 h2 标签。函数文件中的代码是
function get_related_author_posts() {
global $authordata, $post;
$authors_posts = get_posts( array( 'author' => $authordata->ID, 'post__not_in' => array( $post->ID ), 'posts_per_page' => 5 ) );
$output = ' <ul style="list-style: none;">';
foreach ( $authors_posts as $authors_post ) {
$output .= '<li><a href="' . get_permalink( $authors_post->ID ) . '">' . apply_filters( 'the_title', $authors_post->post_title, $authors_post->ID ) . '</a></li>';
}
$output .= '</ul>';
return $output;
}
我想不出任何建议会有所帮助。先感谢您。