我使用css for wordpress在後期設置圖像位置?如何在wordpress中設置圖片位置?
single.php
<?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?>
<div align="center"><h6><?php the_title();?></h6></div>
<div class="isi">
<?php the_content();?>
</div>
<?php endwhile; ?>
<?php else : ?>
<div id="post-<?php the_ID(); ?> " <?php post_class(); ?>
<h2><?php _e('Not Found'); ?></h2>
</div>
<?php endif; ?>
style.css
.isi img{float:left; }
,我想
image ---------
---------------
---------------
----------image
---------------
有任何想法解決我的問題有何看法?
哇謝謝它的作品!我不需要添加任何東西 –