将社交图标从标题移动到内容区域

时间:2014-07-25 10:37:54

标签: html

我将社交图标从标题移动到内容区域

1 个答案:

答案 0 :(得分:0)

header.php的一部分

<div id="main">
<div  id="forbottom" >
    <?php cryout_forbottom_hook(); ?> /*Remove this hook*/

    <div style="clear:both;"> </div>

    <?php cryout_breadcrumbs_hook();?>

由于您要在内容区域中显示社交分享图标,请将其添加到page.php

<section id="container">
  <?php cryout_forbottom_hook(); ?> /* Add the hook here to display social icons */
    <div id="content" role="main">
        <?php cryout_before_content_hook(); ?>
        <?php get_template_part( 'content', 'page'); ?>
        <?php cryout_after_content_hook(); ?>
        </div><!-- #content -->
        <?php get_sidebar(); ?>
</section><!-- #container -->
    <?php } // else
     get_footer(); ?>