使用Shortcode获取自定义字段的值
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Shortcode获取自定义字段的值相关的知识,希望对你有一定的参考价值。
Get the Value of the Custom Field Using the Shortcode
function shortcode_field($atts){ 'post_id' => NULL, ), $atts)); $field = esc_attr($atts[0]); global $post; $post_id = 1*(NULL === $post_id) ? $post['ID'] : $post_id; } else { $post_id = 1*(NULL === $post_id) ? $post->ID : $post_id; } $answer = get_post_meta($post_id, $field, true); $answer = $answer; return $answer; } add_shortcode('field', 'shortcode_field');
以上是关于使用Shortcode获取自定义字段的值的主要内容,如果未能解决你的问题,请参考以下文章
Jira scriptrunner脚本字段:在自定义字段上,计算其他自定义字段的值并显示总计