图像数据被存储为post或CPT,因此您可以将其视为一个。
$album_id = get_the_id();
$img = new WP_Query(array(\'p\'=>$album_id,\'post_type\'=>\'attachment\'));
var_dump($img->posts[0]->post_content);
或者,更复杂一点,。。。
$album_id = get_the_id();
$img = new WP_Query(array(\'p\'=>$album_id,\'post_type\'=>\'attachment\'));
if (!empty($img->posts[0])) {
var_dump($img->posts[0]->post_content);
}
get_the_ID
将返回当前帖子的ID,因此只能在附件页上使用。我想,既然这就是你所使用的,那就是这项工作的背景。
参考文献
https://codex.wordpress.org/Class_Reference/WP_Query