我在wordpress中有一个数据表...
在以下代码中......
echo '<tr><td>Category</td><td>:</td><td>'. the_category(', ') .'</td></tr>';
类别名称没有显示在正确的位置,它显示在所有行...
之上我无法弄清楚问题......一切看起来都很完美......
答案 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中的函数。