我怎样才能显示<?php bloginfo('name'); ?>
和(<?php the_author_posts(); ?>
只有帖子号> 0?
因为如果我通过某个类别获得作者的最后 2 个帖子并且没有与某个作者关联的帖子,问题是当没有帖子时 php 代码还显示帖子计数 == 0 的类别标题类别/博客 ID。如何隐藏类别结果==0?
我用过这段代码:
<?php
$original_blog_id = get_current_blog_id(); // prendi blog corrente
$bids = array(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15); // inserisce l'ID nell'Array
foreach($bids as $bid):
switch_to_blog($bid); //switch
?>
<h2 class="elenco"> Ultimi articoli per: <?php bloginfo('name'); ?> ( <?php the_author_posts(); ?> ) </h2>
<?php
$posts = get_posts('author='.$curauth->ID.'&posts_per_page=2');
foreach($posts as $post): setup_postdata($post);?>