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



我将社交图标从页眉移到内容区

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(); ?>

最新更新