我已经为WP CMS设计了主题,当我在文件 header.php 中使用wp_head时,发现使用 Contact From 7 插件存在问题。
由联系表7 none display
在页面中创建的所有字段,而所有“输入”标签的样式表为style.css。
<head>
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title><?php if (is_home () ) {bloginfo('name'); } elseif ( is_category() ) { single_cat_title(); echo ' - ' ; bloginfo('name'); }
elseif (is_single() ) { single_post_title(); }
elseif (is_page() ) { bloginfo('name'); echo ': '; single_post_title(); }
else { wp_title('',true); } ?></title>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/css/bootstrap.min.css">
<link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/css/style.css">
<link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/css/media.css">
<link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/css/animate.css">
<script src='<?php bloginfo('template_url'); ?>/js/jquery.min.js'></script>
<script src='<?php bloginfo('template_url'); ?>/js/bootstrap.min.js'></script>
<?php wp_head(); ?>
</head>