我正在尝试使用get_permalink函数在前端显示当前的帖子/页面URL。以下代码运行良好,但不打印查询字符串。如何显示包括查询字符串在内的完整URL?
// 短代码:[current-url]
function current_url() {
return get_permalink($post->ID);
}
add_shortcode( 'current-url', 'current_url' ); ``` Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
use this code for it
function current_url() { global $wp; echo home_url( $wp->request ); } add_shortcode( 'current-url', 'current_url' );