Wordpress功能标签来自表外

时间:2011-08-20 12:25:55

标签: php html wordpress

我在wordpress中有一个数据表...

在以下代码中......

echo '<tr><td>Category</td><td>:</td><td>'. the_category(', ') .'</td></tr>';

类别名称没有显示在正确的位置,它显示在所有行...

之上

我无法弄清楚问题......一切看起来都很完美......

2 个答案:

答案 0 :(得分:0)

使用get_the_category_list(', ')See documentation

get_the_category_list()返回结果,the_category()打印结果

答案 1 :(得分:0)

这是echo将对打印结果的函数执行的操作,您应该像这样使用它

<?php // some code ?>
<tr><td>Category</td><td>:</td><td><?php the_category(', ') ?></td></tr>
<?php // some code ?>

使用html中的函数。