在另一个函数中使用变量

时间:2014-05-08 12:25:59

标签: php wordpress function variables

我有这个:

<?php the_title(); ?>

我想把它放在这个:

$footer_thumbs = get_posts('category_name=HERE&numberposts=9');

在这里

我该怎么做?请帮忙。谢谢

3 个答案:

答案 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。