没有用于条件页面的模板。php Elementor

时间:2020-11-03 作者:Isakiye Afasha

我正在构建WordPress主题,我希望它支持Elementor主题。但我在Elementor调试模式中遇到了这个错误。

No Template for condition > theme name -page.php

原因可能是什么?

这是我的页面。php

<?php
get_header();
?>
    <?php 
if ( have_posts() ) {
    while ( have_posts() ) {
        the_post(); 
        the_title( );
        the_content();
    } // end while
} // end if
?>
<?php
get_footer();

1 个回复
SO网友:Isakiye Afasha

我最终解决了问题,与模板文件无关。

我让jquery退出队列,而是让我的自定义jqueryJquery 而不是jquery Elementor使用的,这就是问题的原因。

这就是我的代码。

wp_dequeue_script(\'jquery\');
wp_deregister_script(\'jquery\');
wp_register_script(\'Jquery\', get_template_directory_uri().\'/vendor/jquery/jquery.js\', false, \'3.4.1\', false);
wp_enqueue_script(\'Jquery\');
这是我的主意

wp_dequeue_script(\'jquery\');
wp_deregister_script(\'jquery\');
wp_register_script(\'jquery\', get_template_directory_uri().\'/vendor/jquery/jquery.js\', false, \'3.4.1\', false);
wp_enqueue_script(\'jquery\');

相关推荐