我大约一年没用过wordpress,似乎我已经忘记了一切。有人可以帮忙吗?
我刚刚创建了一个自定义主题并将其激活。但是,它引用了style.css文件。
这是style.css文件中的代码:
p {
font-family: verdana;
font-size: 300px;
}
的index.php:
<?php get_header();
?>
<h1> hello world </h1>
<p> work work work work </p>
<?php
if ( have_posts() ) : while ( have_posts() ) : the_post();
the_title();
endwhile; else : ?>
<p><?php _e( 'Sorry, no posts matched your criteria.' ); ?></p>
<?php endif; ?><?php
get_footer(); ?>
的functions.php:
<?php
function enqueueingStyleSheet() {
wp_enqueue_style( 'style', get_stylesheet_uri());
}
add_action('wp_enqueue_scripts', 'enqueueingStyleSheet')
?>
更新:仍然没有解决方案。我不明白它是如何进行服务器缓存的 - 没有附加组件或任何可能导致这种情况的东西。我通过Plesk安装了Wordpress,无法找到任何选项来更改缓存设置。我在WordPress安装上没有插件。