所以这是可行的:
the_title( \'<h1 class="entry-title">\', \'</h1>\' );
但这并不是:
the_date( \'<h4 class="entry-date">\', \'</h4>\' );
我不知道这是不是
the_title()
或者如果Twenty15主题在函数中指定了此功能。我看不到,但我可能会错过它。当然,只是打印
the_date();
它可以按预期的方式工作,也可以将其从php块中拉出,并将其包装在html中。我只是想有一个漂亮的小方法
the_title
那里
最合适的回答,由SO网友:Howdy_McGee 整理而成
The Codex (或Developer Resources ) 当您对函数不确定时,它是一个很棒的工具。查看参数列表the_date()
上面写着:
the_date( $format, $before, $after, $echo );
所以你需要进去
a format 作为第一个参数,然后是HTML标记。示例如下所示:
the_date( \'l, F j, Y\', \'<h4 class="entry-date">\', \'</h4>\' );