0
選択したカテゴリのすべての投稿をサムネイルとタイトルで表示しようとしています。私は選択したカテゴリを表示するために、以下のコードを取得することができましたが、選択したカテゴリの各投稿のサムネイルとタイトルを表示するループを見つけることはできません。私はそれがそのカテゴリの最初のポストのために私にサムネイルを表示するために取得することができ、このコードで選択したカテゴリのループを終了
<?php $taxonomy = 'category';
// Get the term IDs assigned to post.
$post_terms = wp_get_object_terms($post->ID, $taxonomy, array('fields' => 'ids'));
// Separator between links.
$separator = ', ';
if (! empty($post_terms) && ! is_wp_error($post_terms)) {
$term_ids = implode(',' , $post_terms);
$terms = wp_list_categories(array(
'title_li' => '',
'style' => 'none',
'echo' => false,
'taxonomy' => $taxonomy,
'include' => $term_ids
));
$terms = rtrim(trim(str_replace('<br />', $separator, $terms)), $separator);
// Display post categories.
echo $terms;
} ?>
:
<a href="<?php get_the_permalink($term_id); ?>">
<?php the_post_thumbnail(array(200, 200)); ?>
</a>
どのようにループこのできますか?
おかげ
ありがとうございました。私はリンクを見て、自分のコードに合わせてコードを変更した。私はちょうど私が欲しかったものに合わせてレイアウトを少し変更しなければなりませんでした。 – FilT