很抱歉发布这样一个noob问题,但我完全卡住了,不知道我在找什么。
所以基本上我有一个buddypress网站,有一个静态主页。
在主页上,我需要添加一个动态区域,管理员可以在其中添加新闻故事,这个故事可能会每月更改一次。
我只想知道我在找什么,是小部件还是边栏还是其他什么?
再一次为noob的问题感到抱歉,我对所有WP/BP的东西都是新手。
这是WP/BP的最新版本。
凯尔
最合适的回答,由SO网友:Pollux Khafra 整理而成
您需要打开自定义子主题并向索引添加循环。php。或者,如果您希望它出现在侧栏中,那么您可以将其添加到侧栏中。如果您只希望它出现在主页上,请使用带有条件检查的php。如果您只想显示一篇文章,请添加类似的内容。
<?php
global $wp_query;
$args = array(
\'cat\' => #, //add the category id of the posts
\'posts_per_page\' => 1, // set how many posts to show in the loop
);
$wp_query = new WP_Query( $args );
while ( $wp_query->have_posts() ) : $wp_query->the_post(); ?>
//setup the contents of the loop
<h2><?php the_title(); ?></h2>
<p><?php the_excerpt(); ?></p>
<?php endwhile; ?>