我有这个:
<?php the_title(); ?>
我想把它放在这个:
$footer_thumbs = get_posts('category_name=HERE&numberposts=9');
在这里
我该怎么做?请帮忙。谢谢
答案 0 :(得分:0)
试试这个
$title = the_title();
$footer_thumbs = get_posts('category_name=$title&numberposts=9');
答案 1 :(得分:-1)
尝试;
$footer_thumbs = get_posts('category_name=' . the_title() . '&numberposts=9');
答案 2 :(得分:-1)
the_title()适用于帖子标题。你需要获取类别ID或它的slug并将其传递给参数....但你需要首先获取类别slug。