仅由管理员在侧边栏中发布帖子

时间:2012-11-02 作者:Product Investigation

我想在“最新帖子”窗口小部件中只显示管理员发布的帖子(现在它显示所有投诉者发布的最新帖子)。我该怎么做?通过wp查询?谢谢:)

<?php // setup the query
                    $args=\'&posts_per_page=\'.$numreviews.\'_reviews&order=DESC&orderby=\'.$feedsort.$metakey;                             
                    $cust_loop = new WP_Query($args); 
                    if ($cust_loop->have_posts()) : while ($cust_loop->have_posts()) : $cust_loop->the_post(); $postcount++;
                        // if we\'re sorting by rating and this item does not have a rating, hide it
                        $rating = get_post_meta(get_the_ID(), "Rating", $single = true); 
                        if(($rating && $feedsort=="meta_value") || ($feedsort!="meta_value")) {                                     
                            $ratings = con_setup_rating($rating); //setup the ratings array


                        ?>
                        <li>                                                                                    

                            <?php con_show_rating($ratings[0], $ratings[1], $ratings[2]); // show the stars or hearts ?>    

                            <a class="post-title" href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a>                                              

                        </li>

                    <?php } ?>

                <?php endwhile; 
                endif; 
                wp_reset_query(); ?>

2 个回复
SO网友:s_ha_dum

你需要add an author parameter 指向正在创建的查询$cust_loop. 您没有发布代码的这一部分,但类似于:

$cust_loop = new WP_Query( \'author=123\' );
或:

$cust_loop = new WP_Query( \'author_name=rami\' );
注:这两个都是直接从抄本中获取的WP_Query.

SO网友:Product Investigation

好的,谢谢,现在开始工作了:)

$cust_loop = new WP_Query(array(\'author_name\' => \'admin\', \'posts_per_page\' => 6)); 

结束

相关推荐

已将wordPress从本地主机移至live,wp-admin显示白屏

嗨,我在本地主机上用wordpress开发了一个网站,然后将其移动到一个实时服务器上。除了wp管理外,一切正常。当我转到域/wp管理时,它会显示一个白色屏幕。然而,当我进入域/wp登录时。php它允许我登录到管理员。此外,如果我尝试创建新帖子或更新任何设置,它会一直显示一个空白的白色屏幕,但当刷新时,会保存设置/添加帖子等。网站是www.nuvogadgets。com。有什么想法吗?谢谢