您可以将此代码用于本机WordPress上载程序。如果将图像分配到自定义字段,则必须使用get\\u post\\u meta-like函数。最基本的方法是,从Add Media 区域,并在single.php
或者使用哪个主题文件。
if ($migallery = get_children(
array(
\'post_parent\' => get_the_ID(),
\'post_type\' => \'attachment\',
\'numberposts\' => -1,
\'post_mime_type\' => \'image\',
\'exclude\' => get_post_thumbnail_id()
)
)
)
{
$aa_string .= "<div>"; //Before gallery div
foreach ($migallery as $galerir)
{
$aath = wp_get_attachment_image_src($galerir->ID, \'thumbnail\');
$aabg = wp_get_attachment_image_src($galerir->ID, \'full\');
$aa_string .= "<a href=\'$aabg[0]\'>";
$aa_string .= "<img src=\'$aath[0]\'/>";
$aa_string .= "</a>";
}
$aa_string .= "</div>"; //div ends
}
$aa_string .= "<div style=\'clear:both;\'></div>";
return aa_string;
您可以更改引导库的代码(尤其是foreach区域)。