我一直在研究website 使用二十一主题。
我正在修改页脚。当我刷新我的网站时,我注意到我在我的子主题中添加的所有额外css都不起作用。我恢复了在页脚中所做的更改。php,但我的子主题css中没有任何内容应用于我的网站。
如有任何建议,将不胜感激
Edit:
这是代码——我没有我最初写的东西,因为它只是一个小的编辑,我只是在上面写的。我还清除了缓存,以确保没有看到旧版本。
<?php
/**
* The template for displaying the footer
*
* Contains footer content and the closing of the #main and #page div elements.
*
* @package WordPress
* @subpackage Twenty_Twelve
* @since Twenty Twelve 1.0
*/
?>
</div><!-- #main .wrapper -->
<footer id="colophon" role="contentinfo">
<div class="site-info">
<?php do_action( \'twentytwelve_credits\' ); ?>
<a href="<?php echo esc_url( __( \'http://wordpress.org/\', \'twentytwelve\' ) ); ?>" title="<?php esc_attr_e( \'Semantic Personal Publishing Platform\', \'twentytwelve\' ); ?>"><?php printf( __( \'Proudly powered by %s\', \'twentytwelve\' ), \'WordPress\' ); ?></a>
</div><!-- .site-info -->
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>