wordpress-theme-cbsonline/module_loop_post2.php

36 lines
1.3 KiB
PHP
Raw Permalink Normal View History

2020-10-29 23:50:19 +09:00
<?php
$postType = get_post_type();
if ($postType == 'post') {
$taxonomySlug = 'category';
} else {
$taxonomies = get_the_taxonomies();
if ($taxonomies) {
foreach ( $taxonomies as $taxonomySlug => $taxonomy ) {}
} else {
$taxonomySlug = '';
}
}
$taxo_catelist = get_the_term_list( $post->ID, $taxonomySlug, ' ','','');
?>
<!-- [ .infoListBox ] -->
<div id="post-<?php the_ID(); ?>" <?php post_class('infoListBox ttBox'); ?>>
<div class="entryTxtBox<?php if ( has_post_thumbnail()) echo ' ttBoxTxt haveThumbnail'; ?>">
<h4 class="entryTitle">
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
<?php if ( is_user_logged_in() == TRUE ) : edit_post_link(__('Edit', 'bizvektor-global-edition'), '<span class="edit-link edit-item">[ ', ' ]</span>');endif ?>
</h4>
<p class="entryMeta">
<span class="infoDate"><?php echo esc_html( get_the_date() ); ?></span>
</p>
<?php the_excerpt(); ?>
<div class="moreLink"><a href="<?php the_permalink(); ?>"><?php _e('Read more', 'bizvektor-global-edition'); ?></a></div>
</div><!-- [ /.entryTxtBox ] -->
<?php if ( has_post_thumbnail()) { ?>
<div class="thumbImage ttBoxThumb">
<div class="thumbImageInner">
<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail(); ?></a>
</div>
</div><!-- [ /.thumbImage ] -->
<?php } ?>
</div><!-- [ /.infoListBox ] -->