<!--functions.php-->
<?php
function learningWordPress_resources() {
\t wp_enqueue_style('style', get_stylesheet_uri());
}
add_action('wp_enqueue_scripts', 'learningWordPress_resources');
私はメッセージを取得する「クラス=」ホームブログログインしている管理者-バーノーサポート、カスタマイズワードプレスの私のナビゲーションバーの下の「>」私はコーディングしていますがスクラッチから。誰もこれを削除する方法を知っていますか?もしそうなら、あなたの助けもいただければ幸いです。)
(それはワードプレスに依存しますので、付属のコードはここで実行されませんうまくいけばを、添付画像が状況を説明するのに十分である)
/*
CSS:
Theme Name: Yonsei Fencing
Author: Yonsei Student
Version: 1.0
*/
<!--index.php-->
<?php
get_header();
if (have_posts()) :
\t while (have_posts()) : the_post(); ?>
\t <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
\t <?php the_content(); ?>
\t
\t <?php endwhile;
\t else:
\t \t echo '<p>No content found</p>';
\t endif;
get_footer();
?>
<!--header.php-->
<!DOCTYPE html>
<html> <?php language_attributes(); ?>>
\t <head>
\t \t <meta charset="<?php bloginfo('charset'); ?>">
\t \t <meta name="viewport" content="width=device-width">
\t \t <title><?php bloginfo('name'); ?></title>
\t \t <?php wp_head(); ?>
\t </head>
<body> <?php body_class(); ?>>
\t <!--site-header-->
\t <header class="site-header">
\t \t <h1><a href="<?php echo home_url(); ?>"><?php bloginfo('name'); ?></a></h1>
\t \t <h5><?php bloginfo('description'); ?></h5>
\t </header><!--/site-header-->
<!--footer.php-->
<footer class="site-footer">
\t <p><?php bloginfo('name'); ?> - © <?php echo date('Y');?></p>
</footer>
<?php wp_footer(); ?>
</body>
</html>
ボディクラスをカスタマイズするためのカスタム関数を 'functions.php'ファイルに追加しましたか? – zipkundan
こんにちは、今は追加しましたが、何も変わっていないようです。 – noddy