2016-05-10から1日間の記事一覧

ワードプレス カスタム 抜粋 新着記事 

'post', 'posts_per_page' => '5')); if($myposts): ?> <aside class="amenu"> <h2>最新記事一覧</h2> <ul> <li><a href="<?php the_permalink(); ?>"> </a> </li> </ul></aside>

ワードプレス カスタム functions.php 概要 文字抜粋

// 概要(抜粋)の文字数 function my_length($length) { return 77; } add_filter('excerpt_mblength','my_length'); // 概要(抜粋)の記号 function my_mory($more) { return '...'; } add_filter('excerpt_more','my_more');