如何在自定义帖子类型上显示图片标题...?

时间:2013-03-25 作者:user972265

我按照以下代码制作画廊照片系统:

$the_imgs = get_custom_field(\'gallery_img:to_array\');
foreach( $the_imgs as $img )
{
    list( $url, $width, $height ) = wp_get_attachment_image_src( $img, \'thumbnail\' );
    echo \'<img src="\' . $url . \'" width="\' . $width . \'" height="\' . $height . \'"><br />\'; 
}
但我想展示我的字幕照片,有人可以帮我。。。???

1 个回复
SO网友:funwhilelost

您应该能够使用WP\\u post对象的post\\u摘录中的标题。

$the_imgs = get_custom_field(\'gallery_img:to_array\');
foreach( $the_imgs as $img )
{
    list( $url, $width, $height ) = wp_get_attachment_image_src( $img, \'thumbnail\' );
    $img_post = get_post( $img );
    echo \'<img src="\' . $url . \'" width="\' . $width . \'" height="\' . $height . \'"> \' . $img_post->post_excerpt . \'<br />\'; 
}

结束

相关推荐

Gallery backend only

我正在使用Wordpress为我的网站的博客部分以及我的活动时间表提供支持(使用自定义帖子类型管理区域)。我希望添加创建图像库的选项,并使用自定义标记将其包含在帖子中。我想自己处理整个前端集成,只需使用库插件上传的db数据和文件。有没有什么好的后端专用解决方案可以创建图库,或者我应该自己开发吗?