ページ

2013年8月9日金曜日

WordPressの記事一覧の各記事の長さを省略する方法


WordPressの各テーマを新規に有効化した状態では、各記事は、デフォルトでは全文表示になってしまうので、長い記事とかだと面倒である。

そこで、一覧の各記事の長さを省略する。


一覧をコントロールしているのは

c:\Apache2\htdocs\wordpress\wp-content\themes\twentytwelve

とかの

content.phpとfunction.phpであり、そのうちcontent.phpの方をとりあえずいじる。

<?php the_content( __( 'Continue reading <span>&rarr;</span>', 'twentytwelve' ) ); ?>

とかなっている行を、
<?php //the_content( __( 'Continue reading <span>&rarr;</span>', 'twentytwelve' ) ); ?>

とコメントアウトする。

次に、それと同じところに、
<?php echo mb_substr(strip_tags($post-> post_content),0,200).'...'; ?>

を貼り付ける。

0 件のコメント:

コメントを投稿