如何从图库缩略图中显示自定义字段?

时间:2017-10-18 作者:mars

我为图像库创建了一个自定义字段,名为views

enter image description here

我的问题是如何检索模板库中的字段?查看img,我想显示views 红色箭头指向的标题下方。

enter image description here

有什么建议吗?

2 个回复
SO网友:Mahmoud

如果您的字段在页面中另存为post\\u meta,则可以使用下面的代码检索它

<?php $views = get_post_meta( $current_post_id, \'views\', true ); ?>
然后使用显示<?php echo $view; ?>

SO网友:mars

非常感谢您的回复,马哈茂德!

这就是我想展示它的方式!

add_filter( \'use_default_gallery_style\', \'mysimplefunction\' );
function mysimplefunction(){
$views = get_post_meta( $current_post_id, \'views\', true );
      echo \'<h1>\' . $views . \'</h1>\';
}
正如我所说,我希望它显示在我的图库缩略图下面!我应该使用不同的功能吗?

结束