插件不会将脚本或样式排队 - 自定义查询

时间:2018-05-15 01:09:02

标签: php ajax wordpress plugins load

我正在使用找到here的专业博客设计插件。它添加了一个按钮来加载更多内容。它在我的存档和搜索页面上运行良好,但在自定义页面上根本不起作用(例如:" page-customname.php")。

自定义页面还有一个带分页的自定义查询循环:

<?php $the_query = array('post_type' => 'post', 'post_status' => 'publish', 'category_name' => 'stories');

// Get current page and append to custom query parameters array
$the_query['paged'] = get_query_var( 'paged' ) ? get_query_var( 'paged' ) : 1;

// Instantiate custom query
$custom_query = new WP_Query( $the_query );

// Pagination fix
$temp_query = $wp_query;
$wp_query   = NULL;
$wp_query   = $custom_query;

// Output custom query loop
if ( $custom_query->have_posts() ) :
    while ( $custom_query->have_posts() ) :
        $custom_query->the_post();

   echo 'loop items go here';   

endwhile;
endif; 
wp_reset_postdata();
$wp_query = NULL;
$wp_query = $temp_query;
  ?>  

在此循环结束时,插件分页再次适用于存档和搜索,但不适用于自定义查询页面。

我可以说脚本和样式没有排队,因为插件css样式不起作用(仅在此页面上)。

这有什么原因吗?

这是插件功能:

function pbd_alp_init() {
    global $wp_query;

    // Add code to index pages.
    if( !is_singular() ) {  
        // Queue JS and CSS
        wp_enqueue_script(
            'pbd-alp-load-posts',
            plugin_dir_url( __FILE__ ) . 'js/load-posts.js',
            array('jquery'),
            '1.0',
            true
        );

        wp_enqueue_style(
            'pbd-alp-style',
            plugin_dir_url( __FILE__ ) . 'css/style.css',
            false,
            '1.0',
            'all'
        );

        // What page are we on? And what is the pages limit?
$max = $wp_query->max_num_pages;
$paged = ( get_query_var('paged') > 1 ) ? get_query_var('paged') : 1;

// Add some parameters for the JS.
wp_localize_script(
    'pbd-alp-load-posts',
    'pbd_alp',
    array(
        'startPage' => $paged,
        'maxPages' => $max,
        'nextLink' => next_posts($max, false)
    )
);
        }
 }
 add_action('template_redirect', 'pbd_alp_init');

编辑:更新了自定义查询,更简单,没有null

<?php  
// Define custom query parameters
$the_query = new WP_Query( array(
    'post_type' => 'post',
    'post_status' => 'publish',
    'category_name' => 'stories',
    'paged' => get_query_var('paged')));

while ( $the_query->have_posts() ) : $the_query->the_post();    

echo 'loop stuff';  

endwhile;
wp_reset_postdata();?>

编辑:工作解决方案!

问题出在javascript中。 !is_singular()需要更改为不会取消自定义页面的内容,例如:!is_home();

此外,javascript无法识别查询或其关联的页码,因此我必须将$global wp_query更改为$wp_query = new WP_Query( array('post_type' => 'post', 'post_status' => 'publish'));这可能不是最佳解决方案,但它似乎有效所有页面。

1 个答案:

答案 0 :(得分:1)

在归档和搜索页面上,行if( !is_singular() ) {的计算结果为TRUE,因为这些页面不显示单一资源(is_singular()返回false,然后由引导&#34;!&#34;)取消。所以if块中的代码永远不会在你的页面上运行,因为is_singular的计算结果为TRUE,然后被#34;!&#34;否定。