在php中用帖子标题代替页面标题

时间:2018-08-08 作者:Gabriel Nwamadi

如何在php站点中显示帖子标题而不是页面标题我曾尝试使用弹出帖子标题的php代码,但效果不佳

1 个回复
SO网友:bulldog

要显示文章标题,可以使用:

<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a>
或者,一个简单的:

<?php echo get_the_title(post->$ID); ?> 

结束