我正在开发一个支持WordPress帖子格式的主题。因此,我使用了一个大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.