为什么这个标题标签应用于我的文章,我的意思是,我没有在段落中显示文章,而是在h4标签中显示,因为我将它应用到了日期,并且它也自动应用到了我的内容。
echo \'<h2>\'.get_the_title().\'</h2>\';
echo \'<h4>\'.get_the_date().\'<h4>\';
echo\'<br/>\';
while(have_posts()): the_post();
the_content();
endwhile;
为什么这个标题标签应用于我的文章,我的意思是,我没有在段落中显示文章,而是在h4标签中显示,因为我将它应用到了日期,并且它也自动应用到了我的内容。
echo \'<h2>\'.get_the_title().\'</h2>\';
echo \'<h4>\'.get_the_date().\'<h4>\';
echo\'<br/>\';
while(have_posts()): the_post();
the_content();
endwhile;
您的第二个h4标记也是一个开始标记。
这
echo \'<h4>\'.get_the_date().\'<h4>\';
应该是这个echo \'<h4>\'.get_the_date().\'</h4>\';
我已经安装了html5空白模板,并创建了子主题。我需要添加徽标?我已经在管理面板中添加了“媒体中的图像”选项,但我应该如何将其用作徽标?我无法在管理面板中找到任何附加徽标文件的选项。