如何在wordpress静态页面

时间:2018-01-19 04:27:30

标签: php html css wordpress

这里我有一个Wordpress主题,工作正常。

现在我想在现有内容下附加我的自定义div。这里有2个现有的面板如下:

enter image description here

我在WordPress的新人如此友好地帮助我,如何达到这个要求。我们将竭诚为您所作的努力。

1 个答案:

答案 0 :(得分:0)

第1步:打开您的wp-content-> themes->您的主题名称 - > footer.php 在最顶部开始添加div但确保它将显示在所有页面上。 示例:

<div class="infooterfile"></div>
<footer>
    <div class="footer-wrap">
        <div class="icoach-section">
            <div class="footer-logo fadeIn animated">
                <?php
                    $icoach_dark_logo=get_theme_mod('icoach_dark_logo');
                    $icoach_dark_logo=wp_get_attachment_url($icoach_dark_logo);
                ?>
                <?php if($icoach_dark_logo != '' && !empty($icoach_dark_logo)): ?>
                    <img class="img-responsive" src="<?php echo esc_url($icoach_dark_logo); ?>" alt="<?php esc_attr_e('Logo','icoach');?>">
                <?php endif; ?>      
            </div>

注意:如果您只想显示主页,则需要在主页单独模板中添加<?php get_footer(); ?>以上的div。

示例:在主页单独的模板

<?php
/**
 * The main template file
 **/
get_header(); ?>
<div class="heading-wrap blog-heading-wrap" >
    <div class="heading-layer">
        <div class="heading-title">
            <h1><?php _e('Blog ','icoach'); ?></h1>
        </div>
    </div>
</div>
<div class="yourdiv"></div>
<?php get_template_part('content'); get_footer(); ?>