2018-11-19から1日間の記事一覧

bs4navwalker

<nav class="navbar fixed-top navbar-expand-lg navbar-dark bg-fade"> <a class="navbar-brand" href="<?php echo esc_url( home_url( '/' ) ); ?>"> <img src="<?php echo get_template_directory_uri(); ?>/images/travelracing01.png" width="30" height="30" class="d-inline-block align-middle" alt=""> </a></nav>

single.phpをカテゴリーによって使い分ける方法

post; if ( in_category('music') ) { include(TEMPLATEPATH.'/single/music.php'); elseif ( in_category( array('photo','movie') ) ) { include(TEMPLATEPATH.'/single/works.php'); } else { include(TEMPLATEPATH.'/single/blog.php'); }; ?>