当我使用下面的代码时,我的博客POSTS页面上出现了“Array”这个词。我觉得它与这一行有关:
我在PORTFOLIO和NEWS页面上使用了一个类似的模板,这一行的措辞略有不同(“showportcat”和“shownewscat”而不是“get_the_category”),它应该显示类别,而是单词“阵列”就在它的位置。
我试过“showpostcat”但是没有“工作,所以我想知道我是否需要重新措辞呢?或者问题可能在于我在下面包含的代码的另一部分?
<div class="greyblock">
<h4 class="nomar"><?php echo the_title(); ?></h4>
<div class="sep"></div>
<?php echo get_the_category(get_the_ID()); ?>
<div class="clear"></div>
<ul class="blogpost_list columns2">
<?php
$temp = $wp_query;
$wp_query = null;
$wp_query = new WP_Query();
$args = array(
'post_type' => 'post',
'paged' => $paged,
'posts_per_page' => get_option("posts_per_page"),
);
if (isset($_GET['slug'])) {
$args['tax_query']=array(
array(
'taxonomy' => 'postcat',
'field' => 'slug',
'terms' => $_GET['slug']
)
);
}
$wp_query->query($args);
?>
<?php while ( $wp_query->have_posts() ) : $wp_query->the_post();
#We have:
#get_permalink() - Full url to post;
#get_the_title() - Post title;
#get_the_content() - Post text;
#get_post_time('U', true) - unix timestamp
$featured_image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' );
echo "
<li class='pc'>
<img alt='".get_the_title()."' src='".TIMTHUMBURL."?w=400&h=400&src=".$featured_image[0]."'>
<h4>".get_the_title()."</h4>";
$terms = get_the_terms($post->ID, 'postcat');
if ( $terms && ! is_wp_error( $terms ) ) {
$draught_links = array();
foreach ( $terms as $term ) {
$draught_links[] = $term->name;
}
$on_draught = join( ", ", $draught_links );
}
echo "
<p>".get_the_excerpt()."</p>
<a href='".get_permalink()."' class='read'>Read more</a>
<br class='clear' />
</li>
";
endwhile; ?>
</ul>
</div>
<?php get_pagination() ?>
<?php $wp_query = null; $wp_query = $temp; ?>
答案 0 :(得分:1)
怎么样:
$categories = get_the_category(get_the_ID());
foreach ($categories as $category) {
echo $category;
}
答案 1 :(得分:0)
问题仍然存在。我猜这与我对下面两行之一的措辞有关,因为它是投资组合的'showportcat'和新闻的'shownewscat',但'showpostcat'不适用于帖子所以我无法想象它出:
<?php echo get_the_category(get_the_ID()); ?>
**OR**
'taxonomy' => 'postcat',