为什么wordpress修改css没效果?
首先遇到的问题就是修改了Style.css样式表后没有什么变化,原因是版本号,
在 functions.php 加上下面的代码,就可以每次都更新。
add_action( ‘wp_enqueue_scripts’, ‘enqueue_child_theme_styles’, PHP_INT_MAX);
function enqueue_child_theme_styles() {
wp_enqueue_style( ‘parent-style’, get_template_directory_uri().’/style.css’ );
wp_enqueue_style( ‘child-style’, get_stylesheet_uri(), NULL, filemtime( get_stylesheet_directory() . ‘/style.css’ ) );
}
如何去掉文章顶部的特色图片?
- 打开wordpress后台—>外观—>编辑。
- 然后找到single.php,就是文章内容页面的模板。
- 然后找到代码:the_post_thumbnail(‘thumbnail’)
- 最后一步,删除就可以了。
如何设置彩色标签?
直接上wordpress下载插件Simple Tags安装即可
直接进入小工具
自己设置即可
原创文章,转载请注明:转自于122&&113
本文链接地址:如何去自定义wordpress
标签:
WordPress