0

我弄乱了一个使用 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-post-slideshow 中非对象上的成员函数 have_posts() \fnp_functions.php 第 80 行"。关于造成这种情况的任何想法?

4

0 回答 0