Wordpress上的奇怪消息

时间:2016-04-09 13:39:49

标签: php css wordpress



<!--functions.php-->
<?php

function learningWordPress_resources() {

	wp_enqueue_style('style', get_stylesheet_uri());

}

add_action('wp_enqueue_scripts', 'learningWordPress_resources');
&#13;
&#13;
&#13;

我收到消息&#34; class =&#34;主页博客已登录管理栏无定制支持&#34;&gt;&#34;我在wordpress的导航栏下面从头开始编码。有谁知道如何删除它?如果是这样,我们将非常感谢您的帮助:)

(附加的代码不会在这里运行,因为它依赖于wordpress。希望附图可以解释这种情况)

&#13;
&#13;
/* 
CSS:
Theme Name: Yonsei Fencing
Author: Yonsei Student
Version: 1.0
*/
&#13;
<!--index.php-->
<?php

get_header();

if (have_posts()) : 
	while (have_posts()) : the_post(); ?>

	<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
	<?php the_content(); ?>
	
	<?php endwhile;

	else: 
		echo '<p>No content found</p>';

	endif;

get_footer();

?>

<!--header.php-->
<!DOCTYPE html>
<html> <?php language_attributes(); ?>>
	<head>
		<meta charset="<?php bloginfo('charset'); ?>">
		<meta name="viewport" content="width=device-width">
		<title><?php bloginfo('name'); ?></title>
		<?php wp_head(); ?>
	</head>

<body> <?php body_class(); ?>>

	<!--site-header-->
	<header class="site-header">
		<h1><a href="<?php echo home_url(); ?>"><?php bloginfo('name'); ?></a></h1>
		<h5><?php bloginfo('description'); ?></h5>
	</header><!--/site-header-->


<!--footer.php-->
<footer class="site-footer">

	<p><?php bloginfo('name'); ?> - &copy; <?php echo date('Y');?></p>

</footer>

<?php wp_footer(); ?>
</body>
</html>
&#13;
&#13;
&#13;

My webpage

1 个答案:

答案 0 :(得分:5)

问题是,body_class()函数属于 你的body标记,但在您发布的代码中,它是 body标记之后。

按照以下方式更改您的代码,您就可以了:

从此开始,首先关闭正文标记:

<body> <?php body_class(); ?>>

至此,其中包含body标签内的body_class

<body <?php body_class(); ?>>