未显示自定义模板的插件

时间:2013-04-24 作者:Brandon

我正在定制index.php 页我已经定制了header.phpfooter.php 并为这两件事创造了风格。

我的主要index.php 页面有:

<?php
/*
Template Name: Main
*/
?>

<?php get_header(); ?>

Coming soon!

<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
    <?php the_content(); ?>
<?php endwhile; else: ?>
    <p><?php _e(\'Sorry, no posts matched your criteria.\'); ?></p>
<?php endif; ?>  

<?php get_footer(); ?>
我尝试安装一个名为sticky footer的插件。它的目的是使页脚位于页面底部,在调整浏览器大小时不会与我的内容重叠。我无法让那个插件工作。因此,如果你能建议我如何让插件工作,或者知道一种方法,使我的页脚在调整大小时不会与我的内容重叠,但仍保持在底部,我将非常感激。

1 个回复
SO网友:Tamil Selvan C

始终将wp\\u head()放在页眉中,将wp\\u footer()放在页脚中。插件使用此挂钩

Header.php:

 <?php 
     ...
        /* Always have wp_head() just before the closing </head>
         * tag of your theme, or you will break many plugins, which
         * generally use this hook to add elements to <head> such
         * as styles, scripts, and meta tags.
         */
        wp_head();
     ?>
     </head>

Footer.php:

<?php
   /* Always have wp_footer() just before the closing </body>
    * tag of your theme, or you will break many plugins, which
    * generally use this hook to reference JavaScript files.
    */
    wp_footer();
?>
</body>
</html>

结束