小编ROK*_*KAF的帖子

Wordpress上的奇怪消息

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

function learningWordPress_resources() {

	wp_enqueue_style('style', get_stylesheet_uri());

}

add_action('wp_enqueue_scripts', 'learningWordPress_resources');
Run Code Online (Sandbox Code Playgroud)

我收到消息"class ="主页博客登录管理栏no-customize-support">"我在wordpress的导航栏下面从头开始编码.有谁知道如何删除它?如果是这样,我们将非常感谢您的帮助:)

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

/* 
CSS:
Theme Name: Yonsei Fencing
Author: Yonsei Student
Version: 1.0
*/
Run Code Online (Sandbox Code Playgroud)
<!--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(); …
Run Code Online (Sandbox Code Playgroud)

css php wordpress

2
推荐指数
1
解决办法
598
查看次数

标签 统计

css ×1

php ×1

wordpress ×1