wordpressのタグ

IT

ブログタイトル:<?php bloginfo(‘name’); ?>
キャッチフレーズ:<?php bloginfo(‘description’); ?>
ループ:
<!– ループ開始 –>
<?php if(have_posts()): while(have_posts()): the_post(); ?>
<!– ここに繰り返し表示したい項目を記述する –>
<?php endwhile; endif; ?>
<!– ループ終了 –>
投稿日時:<?php echo get_the_date(); ?>
カテゴリー:<?php the_category(‘, ‘); ?>
記事タイトル:<?php the_title(); ?>
記事本文:<?php the_content(read more …); ?>
記事抜粋:<?php the_excerpt(); ?>

IT

Posted by むちごろう