2016.11.06
【WordPress】投稿のタイトルや日付などの各種データの取得方法
基本的なことなんですが、よく忘れるので、よく使う項目をメモメモ
▼タイトルを表示
<?php the_title(); ?>
▼日付を表示
<?php echo get_the_date(); ?>
▼パーマリンク の URL を表示
<?php the_permalink(); ?>
▼投稿の本文を表示
<?php the_content(); ?>
▼投稿の概要(抜粋)を表示
<?php the_excerpt(); ?>
▼概要(抜粋)の文字数調整、文末の[…]を別の文字に変更する方法(functions.phpに記載)
//概要(抜粋)の文字数調整 function my_excerpt_length($length) { return 120; } add_filter( 'excerpt_length', 'my_excerpt_length', 999 ); //概要(抜粋)の省略文字 function my_excerpt_more($more) { return '…'; } add_filter('excerpt_more', 'my_excerpt_more');