如何檢查帖子是否有元數據並按功能顯示?檢查並添加到帖子內容
我交型投資組合與元字段(_wi_next腳本部分和_wi_prev腳本部分)
function wi_next_prev_part_links($content) {
global $wp_query;
$postid = $wp_query->post->ID;
if (is_singular('portfolio')) {
if (get_post_meta($postid, '_wi_prev-script-part', true)) {
$prev_script_part = get_post_meta($postid, '_wi_prev-script-part', true);
$content .= '<a href="'. get_the_permalink($prev_script_part) .'" class="">← Prev Part Link</a>';;
}
if (get_post_meta($postid, '_wi_next-script-part', true)) {
$next_script_part = get_post_meta($postid, '_wi_next-script-part', true);
$content .= '<a href="'. get_the_permalink($next_script_part) .'" class="">Next Part Link →</a>';
}
}
return $content;
}
add_filter ('the_content', 'wi_next_prev_part_links', 0);
您的代碼無法使用?你調試了$ postid var嗎? – TurtleTread