我正在开发一个 WordPress 网站。Roots 主题是由其他人安装的。我想在不使用 Bootstrap 的情况下尽可能直接地对页面进行编码。我并不完全了解 WordPress,但在我看来,它就像是base.php
包含每一页的代码。我想知道我可以在不弄乱主题的情况下改变多少。主要是我不想使用 Bootstrap。我可以删除对“容器”和“行”类的引用吗?顺便问一下,'wrap' 和 'content' 和 'main' 类是什么?我如何找出roots_main_class() 是什么?有没有其他方法可以做到这一点,比如不加载 bootstrap.css?
<?php get_template_part('templates/head'); ?>
<body <?php body_class(); ?>>
<!--[if lt IE 7]><div class="alert"><?php _e('You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.', 'roots'); ?></div><![endif]-->
<?php
do_action('get_header');
// Use Bootstrap's navbar if enabled in config.php
if (current_theme_supports('bootstrap-top-navbar')) {
get_template_part('templates/header-top-navbar');
} else {
get_template_part('templates/header');
}
?>
<div class="wrap container" role="document">
<div class="content row">
<div class="main <?php echo roots_main_class(); ?>" role="main">
<?php include roots_template_path(); ?>
</div><!-- /.main -->
<?php if (roots_display_sidebar()) : ?>
<aside class="sidebar <?php echo roots_sidebar_class(); ?>" role="complementary">
<?php include roots_sidebar_path(); ?>
</aside><!-- /.sidebar -->
<?php endif; ?>
</div><!-- /.content -->
</div><!-- /.wrap -->
<?php get_template_part('templates/footer'); ?>
</body>
</html>