【发布时间】:2018-08-25 22:16:42
【问题描述】:
我想将the_title() 更改为我在帖子中放置/编写的标题标签,我已经使用表格代码创建了列表循环帖子并卡在了这里...有什么帮助吗?
格式标题:<h3 style="text-align: center;">Title Here</h3>
<div class="chapter_release">
<table><tr>
<th>Chapter</th>
</tr>
<?php
// Posts are found
if ( $posts->have_posts() ) {
while ( $posts->have_posts() ) {
$posts->the_post();
global $post;
?>
<tr><td><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></td></tr>
<?php
}
}
?></table></div>
【问题讨论】: