我的朋友让我帮他们在wordpress网站上移动图片。它们有一个沿页面底部运行的图像幻灯片,显示的图像库取决于所使用的页面模板。
一个模板具有以下代码:
<?php
$tagu = get_post_meta($post->ID,'bototm_gallery');
?>
<div class="flt box_bottom">
<ul style="margin-left:10px !important; width:100% !important;" class="sub_photo sub_photo_gigs" class="sub_photo">
<?php echo do_shortcode($tagu['0']); ?>
</ul>`
和另一个页面模板显示此代码:
<?php $tagu = get_post_meta($post->ID,'bototm_gallery'); ?>
<div class="flt box_bottom">
<div class="sv_footer_photo">
<?php echo do_shortcode($tagu['0']); ?>
</div>`
如何将图像添加到特定图库?我无法在媒体库中找到图库ID和/或我不知道在哪里可以找到该类,例如sv_footer_photo或sub_photo。
你可以向我解释一下吗?
答案 0 :(得分:0)
我必须点击屏幕选项&#39;在页面顶部,勾选自定义字段的框,然后我可以看到分配给该页面的图库图片ID。