全球化$post
获取当前帖子的数据。还有,你想要get_permalink
, 返回永久链接,而不是the_permalink
, 它直接与permalink相呼应。
function abcd_add_contents($content) {
if (is_single()) {
global $post;
$extra_content = get_permalink( $post->ID );
$content .= $extra_content;
}
return $content;
}
add_filter(\'the_content\', \'abcd_add_contents\');