$link
このカスタム クエリの最後に変数を追加しようとしています。私は公式のphpページhttp://php.net/manual/en/language.operators.string.phpからこれに従いましたが、何も機能していないようです。
<?php
ob_start();
the_category();
$link = ob_get_contents();
ob_end_clean();
$custom_query = new WP_Query('posts_per_page=-1&category_name='. $link);
if ($custom_query->have_posts()) :
while ($custom_query->have_posts()) : $custom_query->the_post();
$posttags = get_the_tags();
if ($posttags) {
foreach($posttags as $tag) {
$all_tags[] = $tag->term_id;
}
}
endwhile;
endif;
$tags_arr = array_unique($all_tags);
$tags_str = implode(",", $tags_arr);
$args = array(
'smallest' => 12,
'largest' => 12,
'unit' => 'px',
'number' => 0,
'format' => 'list',
'include' => $tags_str
);
wp_tag_cloud($args);
?>
変数に正しい出力が含まれていることを確認しました。また、クエリにカテゴリ名を入力しようとしましたが、これは機能します。
私の質問は、変数をクエリに追加するにはどうすればよいですか?
編集
$link 出力をテキストに出力できれば、これでうまくいくと思います。