我正在使用wordpress作为我的CMS。我在想,左边的面板在其相关类别下有我的“帖子”的标题,右边是帖子的标题及其内容。
我尝试将以下代码放在页面中(在为wordpress启用php插件之后)。但由于我不懂php,我尝试了下面的方法,但它不显示类别为“basics”的页面。
[php]
$myposts = get_posts(\'numberposts=5&category=basics\');
foreach($myposts as $post) :
setup_postdata($post);
//add in standard WordPress post specific template tags here eg. the_title(), the_permalink, the_content, the_excerpt etc.
endforeach;
[/php]