我有一个wordpress网站,我需要以某种方式将可更新的内容放在围绕常规HTML的POST中,这是半自动半静态的。这是代码:
<img src="https://website.xyz/img.jpg" class="fullimgfirst" alt="">
<img src="https://website.xyz/img3.jpg" class="leftimg" alt="">
<img src="https://website.xyz/img4.jpg" class="rightimg" alt="">
<img src="https://website.xyz/img5.jpg" class="fullimg" alt="">
<div class="firstfull">
<div class="firstleft">
<p1>Branding + Digital</p1>
</div>
<div class="firstright">
<h1>Summit</h1>
</div>
</div>
<div class="secondfull">
<h2>Project overview</h2>
<p2>The project description.</p2>
</div>
<img src="https://website.xyz/img2.jpg" class="bigimg" alt="">
<img src="https://website.xyz/img3.jpg" class="leftimg" alt="">
<img src="https://website.xyz/img4.jpg" class="rightimg" alt="">
<img src="https://website.xyz/img10.jpg" class="fullimglast" alt="">
用户将只需要更新所有图像和P2。但正如你所看到的,第一行和最后一行都有图像。如何在wordpress中保持此部分静态:
<div class="firstfull">
<div class="firstleft">
<p1>Branding + Digital</p1>
</div>
<div class="firstright">
<h1>Summit</h1>
</div>
</div>
<div class="secondfull">
<h2>Project overview</h2>
每个帖子的图片和P2是可上传/可更新的吗?
提前非常感谢你。
您可以使用ACF插件。
为此,您必须为顶部和底部图像创建两个ACF Repeater字段。并根据您的结构调用模板中的ACF字段。
P2将来自管理页面编辑器((
你可以这样做你的代码:
<?php if( have_rows('top_content_images') ): ?>
<?php while( have_rows('top_content_images') ): the_row();
$top_image = get_sub_field('content_image');
?>
<?php echo wp_get_attachment_image( $top_image, 'full' ); ?>
<?php endwhile; ?>
<?php endif; ?>
<div class="firstfull">
<div class="firstleft">
<p1>Branding + Digital</p1>
</div>
<div class="firstright">
<h1>Summit</h1>
</div>
</div>
<div class="secondfull">
<h2>Project overview</h2>
<?php the_content();?>
</div>
<?php if( have_rows('bottom_content_images') ): ?>
<?php while( have_rows('bottom_content_images') ): the_row();
$bottom_image = get_sub_field('content_image');
?>
<?php echo wp_get_attachment_image( $bottom_image, 'full' ); ?>
<?php endwhile; ?>
<?php endif; ?>