是否可以对我的网站进行编程,使主页上的这两列帖子在智能手机上也显示为两列?我正在使用 22 个子主题,这是一个响应式主题,但我用来创建两列帖子的代码非常基本,所以它只是在智能手机上组合成一列。
下面是我的 index.php 中的代码摘录,显示了我创建两列的方式。这些 div 也对应于我的 style.css 文件中的简单 CSS
如果允许它们在智能手机上显示为两个独立的列,我很乐意采用不同的方法来创建列。
如果您想查看该页面,该站点位于:internalcompass.us/castle
谢谢
</div>
<div id="right-column">
<?php $my_query = new WP_Query('category_name=favorites');
while ($my_query->have_posts()) : $my_query->the_post();
$do_not_duplicate[] = $post->ID ?>
<?php get_template_part( 'content', get_post_format() ); ?>
<?php endwhile; ?>
</div>
<div id="left-column">
<?php $my_query = new WP_Query('category_name=Recents');
while ($my_query->have_posts()) : $my_query->the_post();
$do_not_duplicate[] = $post->ID ?>
<?php get_template_part( 'content', get_post_format() ); ?>
<?php endwhile; ?>
</div>