これは便利! WordPressの記事に更新日時を表示させる方法

wapuu-moto

使用テーマ: Fruitful

外観からテーマの編集へ入りcontent.phpを開きます
content.phpに以下のコードを追加します

<!-- 公開日及び更新日を表示する↓↓↓ -->
<p style="text-align:right;margin: 1px 5px 0px 1px;">
[記事公開日]<?php the_time('Y/m/d'); ?>
<?php if ((get_the_modified_date('Ymd') != get_the_time('Ymd')) and (get_the_time('Ymd') < get_the_modified_date('Y/n/j'))) : ?>
<br>[最終更新日]<?php the_modified_date('Y/m/d') ?>
<?php endif; ?>
</p>
<!-- ↑↑↑公開日及び更新日を表示する -->

スタイルなどは好みで修正してください

このサイトではタイトルの後に表示するようにしてあります
以下、content.php全文

<?php
/**
 * @package WordPress
 * @subpackage Fruitful theme
 * @since Fruitful theme 1.0
 */
?>
<?php $options = fruitful_get_theme_options(); ?>

<article id="post-<?php the_ID(); ?>" <?php post_class('blog_post'); ?>>
	<?php $day 		 = get_the_date('d'); 
		  $month_abr = get_the_date('M');
	?>
	<?php if (get_the_title() == '') : ?>
		<a href="<?php the_permalink(); ?>" rel="bookmark">
	<?php endif; ?>	
	
	<div class="date_of_post updated">
		<span class="day_post"><?php print $day; ?></span>
		<span class="month_post"><?php print $month_abr; ?></span>
	</div>
	<?php if (get_the_title() == '') : ?>
		</a>
	<?php endif; ?>
	
	<div class="post-content">	
	<header class="post-header">
		<?php if ( is_single() ) : ?>
			<h1 class="post-title entry-title"><?php the_title(); ?></h1>
		<?php else : ?>
			<?php if (get_the_title() != '') : ?>
			<h2 class="post-title entry-title">
				<a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'fruitful' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a>
			</h2>
			<?php endif; ?>
		<?php endif; // is_single() ?>		

<!-- ↓↓↓公開日及び更新日を表示する↓↓↓ -->
<p style="text-align:right;margin: 1px 5px 0px 1px;">
[記事公開日]<?php the_time('Y/m/d'); ?>
<?php if ((get_the_modified_date('Ymd') != get_the_time('Ymd')) and (get_the_time('Ymd') < get_the_modified_date('Ymd'))) : ?>
<br>[最終更新日]<?php the_modified_date('Y/m/d') ?>
<?php endif; ?>
</p>
<!-- ↑↑↑公開日及び更新日を表示する ↑↑↑ -->
	
		
		<?php if ( !is_single() ) : ?>
			<?php if ( has_post_thumbnail() && ! post_password_required() ) : ?>
				<div class="entry-thumbnail">
					<?php the_post_thumbnail(); ?>
				</div>
			<?php endif; ?>
		<?php endif; // is_single() ?>
		<?php if ( is_single() ) : 
				if ($options['show_featured_single'] == 'on'){
					if ( has_post_thumbnail() && ! post_password_required() ) : ?>
					<div class="entry-thumbnail">
						<?php the_post_thumbnail(); ?>
					</div>
					<?php endif;
				} ?>
		<?php endif; // is_single() ?>
	</header><!-- .entry-header -->

	<?php if ( (is_search())) : // Only display Excerpts for Search ?>
	<div class="entry-summary">
		<?php the_excerpt(); ?>
	</div><!-- .entry-summary -->
	<?php else : ?>
	<div class="entry-content">
		<?php the_content( __( 'Read More <span class="meta-nav">&rarr;</span>', 'fruitful' ) ); ?>
		<?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'fruitful' ), 'after' => '</div>' ) ); ?>
	</div><!-- .entry-content -->
	<?php endif; ?>

	<footer class="entry-meta">
		<?php fruitful_entry_meta(); ?>
		
		<?php if ( ! post_password_required() && ( comments_open() || '0' != get_comments_number() ) ) { ?>
			<span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'fruitful' ), __( '1 Comment', 'fruitful' ), __( '% Comments', 'fruitful' ) ); ?></span>
		<?php } ?>
		
		<?php edit_post_link( __( 'Edit', 'fruitful' ), '<span class="edit-link">', '</span>' ); ?>
	</footer><!-- .entry-meta -->
	</div>
</article><!-- #post-<?php the_ID(); ?> -->

コメント

タイトルとURLをコピーしました