我正在尝试在 2x5 表格中显示“与团队会面”页面,并使用之前的网页设计师在 Wordpress 中编写的代码。
这是我正在查看的页面 - http://www.stirling-house.com/about-us/meet-the-team正如我所说,我想在表格中显示图片,这样看起来更整洁。
我的代码是 -
<div id="maintext">
<h1>MEET THE TEAM</h1>
<h3>THE STIRLING HOUSE ADMINISTRATION TEAM</h3>
<?php $members =get_posts('numberposts=99&cat=4&order=ASC'); //print_r($members);
foreach ($members as $post) {
setup_postdata($post);?>
<div class="member-box">
<img src="<?php echo get('member_photo');?>" alt="" style="margin:5px 7px 0 0;" />
<h3><?php echo $post->post_title;?></h3>
<h4><?php echo get('member_designation');?></h4>
谁能帮忙?!