yuu_nkjm blog
2012-12-05(Wed) [長年日記]
[WordPress] Responsiveテーマの書きかえ
固定ページテンプレートの書きかえ (page.php, content-sidebar-page.php)
<?php echo responsive_breadcrumb_lists(); ?>
の下あたりに入れる.
<!--------- nkjm add next-prev start ---------> <div class="next-prev"> <?php previous_page_link_plus( array( 'order_by' => 'menu_order', 'in_same_parent' => true, 'link' => 'Prev: %title', ) );?> | <?php next_page_link_plus( array( 'order_by' => 'menu_order', 'in_same_parent' => true, 'link' => 'Next: %title', ) );?> </div> <!--------- nkjm add next-prev end --------->
<!-- end of #content -->の上あたりに入れる.
<!-- nkjm add 2012-12-08 start --> <div class="next-prev"> <?php previous_page_link_plus( array( 'order_by' => 'menu_order', 'in_same_parent' => true, 'link' => 'Prev: %title', ) );?> | <?php next_page_link_plus( array( 'order_by' => 'menu_order', 'in_same_parent' => true, 'link' => 'Next: %title', ) );?> </div> <?php echo responsive_breadcrumb_lists(); ?> <!-- nkjm add 2012-12-08 end -->
functions.php
/** nkjm add for remove rel next/prev **/ remove_action('wp_head', 'adjacent_posts_rel_link_wp_head', 10);
header.php
</head>
の直前で読み込む
<script type="text/javascript" src="http://www.nkjmlab.org/open/wplab/jquery.toc.min.js"></script> <script type="text/javascript" src="http://www.nkjmlab.org/open/wplab/jquery.collapse.js"></script> <script type="text/javascript" src="http://www.nkjmlab.org/open/wplab/jquery.collapse_storage.js"></script> <script type="text/javascript" src="http://www.nkjmlab.org/open/wplab/wplab-header.js"></script> <link rel="stylesheet" id="my-wplab" href="http://www.nkjmlab.org/open/wplab/wplab.css" type="text/css" media="all" /> <link rel="stylesheet" id="my-print" href="http://www.nkjmlab.org/open/wplab/wplab-print.css" type="text/css" media="print" />
メモ
パンくずリスト
<?php echo responsive_breadcrumb_lists(); ?>
目次の生成(Widgetにいれた)
<!--------- nkjm add generate external toc start ---------> <div class="generate-toc"></div> <!--------- nkjm add generate external toc end --------->