WordPress输出当前文章标题标签:the_title

WordPress模板标签the_title用于输出当前文章的标题,需要用在The Loop主循环里。

the_title( string $before = '', string $after = '', boolean $echo = true )

函数参数

$before

字符串值,默认为空

在标题前输出的内容

$after

字符串值,默认为空

在标题后输出的内容

$echo

布尔值,默认值:true

是否输出标题,如果为false,只返回结果而不是输出。

函数使用示例

为标题添加

标签并输出

<?php the_title( '

', '

' ); ?>

扩展阅读

the_title()函数位于:wp-includes/post-template.php

相关函数:

原创文章,作者:,如若转载,请注明出处:https://ce.771633.xyz/1521.html

Like (0)
Previous 2025年3月8日
Next 2025年3月8日

相关推荐

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注