Traval分类法中的各个术语可以包含描述。您可以将简介文本添加到该字段,并在模板文件中检索当前术语描述文本。
实例
$terms = get_the_terms( $post->ID, \'Travel\' );
echo $terms[0]->description; //Displays description text
然而,我对这张照片不是很确定。也许description字段可以保存html,您可以插入带有描述的图像标记,尽管这并不理想。
您可以将图像上载到主题中的文件夹中,并以您命名的方式命名它们,然后以这种方式获取照片:
<img src="<?php bloginfo( \'template_directory\' ); ?>/images/<?php echo $term[0]->name; ?>.jpg" />