覆盖引导主题到文字新闻

时间:2020-01-30 15:01:30

标签: php html css wordpress

我对wordpress还是陌生的,我想将引导主题转换为wordpress,我不知道这个问题是否很愚蠢。这是我的功能文件中的代码

 <!---This is my functions.php file---->
<?php 
  add_theme_support('post-thumbnails');
  function new2w_theme_styles(){
     wp_enqueue_style( 'bootstrap_css', get_template_directory_uri() . '');
     wp_enqueue_style( 'essentials_css', get_template_directory_uri() . 'assets/css/essentials.css');
     wp_enqueue_style( 'layout_css', get_template_directory_uri() . 'assets/css/layout.css');
     wp_enqueue_style( 'scheme_css', get_template_directory_uri() . '/css/color_scheme/blue.css');
     wp_enqueue_style( 'custom_forms', get_template_directory_uri() . '/css/custom-forms-v2.css');
     wp_enqueue_style( 'pack_css', get_template_directory_uri() . '/css/pack_realestate.css');
     wp_enqueue_style( 'header-1', get_template_directory_uri() . '/css/header-1.css');
     wp_enqueue_style( 'style_css', get_template_directory_uri() . '/style.css');    
  }
   add_action('wp_enqueue_scripts', 'new2w_theme_styles');
   function new2w_theme_js(){
     wp_enqueue_scripts('bootstrap_js', get_template_directory_uri() . '/js/bootstrap.min.js',array('jquery'), '', true);
     wp_enqueue_scripts('script', get_template_directory_uri() . '/js/script.js', array('jquery'), '', true);    
   }
   add_action('wp_enqueue_scripts', 'new2w_theme_js');
?>

请问如何为我的静态页面的另一部分执行相同的循环任务,我已使用此代码循环浏览了3张图片,并且还在管理面板中创建了相应的帖子;

<?php if( have_posts()) : while( have_posts()) : the_post();?>
       HTML GOES HERE
  <?php endwhile; endif;?>
<?

我想使用相同的方法通过get_the_post_thumbnail()函数在另一个4的图像网格中循环,该如何管理帖子。

1 个答案:

答案 0 :(得分:0)

您可以复制引导CSS文件的内容,然后将样式定义粘贴到您的主题(在仪表板中,转到“设计” /“定制程序” /“其他CSS”,然后将代码粘贴在那里)。

但是,要将样式类应用于正确的WordPress生成的DOM元素,您要么必须将类名应用于这些DOM元素,要么重命名样式类,以使其适合DOM元素的名称。无论如何,这种方法仍可能与其他CSS文件发生冲突。