我正在开发一个支持WordPress帖子格式的主题。因此,我使用了一个大if语句,可以在下面找到。
我想将我的帖子标题链接到帖子,同时将我的主题保持为XHTML有效我想在if语句中调用图像(带类),同时将我的主题保持为XHTML有效如果有人能在下面的代码中添加适当的代码,我将不胜感激_
if ( has_post_format( \'video\' )) {
echo the_title();
echo the_excerpt();
}
EDIT: Basically, the most important thing I\'m looking for is that it calls the post name as a link which links to the actual post.