我正在使用我想要创建子主题的主题。
我注意到,当我从父级切换到子级时,页面中的一些元素略微 - 足以破坏布局。
我附上图片以显示此内容。
以下代码。
我怎样才能阻止这种跳跃。'我不认为它与我的附加代码有任何关系 - 因为没有任何代码!那么如何交换到子模板导致这个?我忘记了傻事吗?
由于
这里是子style.css - 你可以看到它真空:
@charset "UTF-8";
/*
Theme Name: Startuply Child
Theme URI: http://example.com/twenty-fifteen-child/
Description: Twenty Fifteen Child Theme
Author: John Doe
Author URI: http://example.com
Template: startuply
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
Text Domain: twenty-fifteen-child
*/
我还在我的孩子中创建了functions.php并添加了:
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
function theme_enqueue_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'child-style',
get_stylesheet_directory_uri() . '/style.css',
array('parent-style')
);
}