gpt4 book ai didi

html - Wordpress 侧边栏定位

转载 作者:行者123 更新时间:2023-11-28 18:09:47 24 4
gpt4 key购买 nike

我有一个侧边栏,我想将其放置在内容的左侧。我已经尝试了所有我能想到的方法,但无法让边栏显示在页面的左侧。

    <div class="container">
<header>

</header>
<?php if ( is_active_sidebar( 'primary' ) ) {?>
<div class='cats'>
<?php dynamic_sidebar( 'primary' ); } ?>
</div>
<div class='content_wrapper'>
<?php if ( have_posts() ) : ?>
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>

<div class="posts">
<article>
<div class="wrapper">
<h2 class='headline'><a href="<?php the_permalink() ?>"></h2>

<div class='thumbs'>

<p><?php echo content('120'); ?></p>
</article>
//.....
// some code
</div>
</div>
... some more code

最佳答案

Please Put this after header, so you can have sidebar at left

<?php get_sidebar(); ?>

对于动态侧边栏使用这个 css

.container
{
margin:auto!important;
}
.cats
{
float:left;
width:30%;
}
.content_wrapper
{
float:right;
width:68%;
}

关于html - Wordpress 侧边栏定位,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18940878/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com