我有一個WordPress站點此功能:拿到冠軍,而不是ID在WordPress的功能
function cf7_get_custom_field($atts){
extract(shortcode_atts(array(
'key' => '',
'post_id' => -1,
'obfuscate' => 'off'
), $atts));
if($post_id < 0){
global $post;
if(isset($post)) $post_id = $post->ID;
}
if($post_id < 0 || empty($key)) return '';
$val = get_post_meta($post_id, $key, true);
if($obfuscate == 'on'){
$val = cf7dtx_obfuscate($val);
}
return $val;`
返回$ VAL給後ID號,而是我想這是後標題。
行: $val = get_post_meta($post_id, $key, true);
應該有get_post_title或get_title在那裏的地方,我想。
任何提示?
您想不要使用帖子標題而是帖子標題? –