我有自定义分类(年份),每年都是一个术语。有时候电影有一年以上的时间。我需要在一部电影中全年不打印 (first - Last)
年。
例如我今年有吸血鬼日记:
2008,2009,2010,2011,2012,2013,2014,2015和2016
我只想用这种方式展示第一年和最后一年:吸血鬼日记(2008年 - 2016年)
我的代码是:
<?php $releaseyear_as_text = get_the_term_list( $post->ID,'release-year','', ' , ' ); ?>
<h1><a href="<?php the_permalink() ?>"><?php the_title(); ?> (<?php echo strip_tags($releaseyear_as_text) ?>)</a></h1>
<div class="clearfix"></div>
我怎样才能做到这一点?
由于
答案 0 :(得分:1)
我在下面写了一些代码,它们会准确显示您很少期待的内容。此外,它将处理另外两种情况:
这是您的自定义代码:
<?php
// Getting the years for the current post ID in a string coma separated
$release_years_str = get_the_term_list( $post->ID,'release-year','', ',' );
// concerting years string in an array of years
$release_years_arr = explode(',', $release_years_str);
// Number of items (terms) in the array
$count = sizeof( $release_years_arr );
// First term year
$first_year = $release_years_arr[ 0 ];
// if there is more than on term (year)
if ( $count > 1 )
{
// Last term year
$last_year = $release_years_arr[ $count - 1 ];
// Formatting in a string the 2 years: (first - Last)
$releaseyear_as_text = ' (' . $first_year . ' - ' . $last_year . ')';
}
elseif ($count == 1) // If there is only one term (one year in the array)
{
$releaseyear_as_text = ' (' . $first_year . ')';
}
else // No term (No years, empty array)
{
$releaseyear_as_text = '';
}
?>
<h1><a href="<?php the_permalink() ?>"><?php the_title(); echo strip_tags($releaseyear_as_text); ?></a></h1>
<div class="clearfix"></div>