在插件中使用wordpress循环

时间:2012-10-08 23:37:18

标签: wordpress-plugin wordpress

我正在搞乱使用wordpress循环的插件。我已经在这方面工作了很长时间,似乎无法在这里找到解决方案。

基本上,我的插件文件夹中有以下功能:

function fnp_getslideshow($settings) {
$query = new WP_Query( "posts_per_page=5");
while ( $my_query->have_posts() ) : $my_query->the_post();
# Code here
endwhile;
}

add_action( 'loop_start', 'fnp_getslideshow', 10, 1 );

由于某种原因,我收到以下错误:“致命错误:在C:\ xampp \ htdocs \ slb \ wp-content \ plugins \ feature-中的非对象上调用成员函数have_posts()在第80行“幻灯片后\ fnp_functions.php”。关于是什么导致这个问题的任何想法?

0 个答案:

没有答案