如何在我的插件页面上显示帖子列表?

时间:2012-08-11 作者:oknoorap

目前,我制作了一个插件,我想在管理子菜单中显示一些帖子,我的url如下

wp管理员/管理员。php?页码=mypluginpage

如何在我的插件页面上显示帖子列表?有没有可能?

谢谢

请删除此帖子,我刚找到解决方案:

<?php
$query = new WP_Query(
    array(
        \'post_type\' => \'post\',
        \'post_status\' => \'publish\'
    )
);

$list = array();
foreach ($query->posts as $post) {
    .......
}
?>

1 个回复
SO网友:Jasper Denkers

最好使用WordPress的函数get\\u posts():

$args = array(
    \'post_type\' => \'post\',
    \'post_status\' => \'publish\'
);

$posts = get_posts( $args );

echo \'<ul>\';

foreach ( $posts as $post ) {
    echo \'<li>\' . $post->post_title . \'</li>\';
}

echo \'</ul>\';

http://codex.wordpress.org/Template_Tags/get_posts

结束

相关推荐