我有一个儿童主题。在子主题中,我有一个自定义页面模板。它可以在桌面上完美工作。我的iPhone上没有Safari浏览器。
这是模板:
<?php
define(\'WP_USE_THEMES\', false); //This code stops the theme files from loading
remove_filter( \'the_content\', \'wpautop\' );
remove_filter( \'the_excerpt\', \'wpautop\' );
while (have_posts()) : the_post();
the_content();
endwhile;
//Get post ID - create html element to store it
echo "<div id=postID>".get_the_ID()."</div>" ;
?>
请注意模板如何不加载主题文件、页眉或页脚。然而,当我在iPhone上打开页面时,页眉和页脚都在那里。除此之外,还会加载所有主题文件。似乎在移动设备上该模板被忽略了。
我怎样才能解决这个问题?