WordPress中如何使用get_permalink函数来获取当前页面URL,包括查询字符串?
P粉404539732
2023-08-30 17:13:25
<p>我正在尝试使用get_permalink函数在前端显示当前的帖子/页面URL。以下代码运行良好,但不打印查询字符串。如何显示包括查询字符串在内的完整URL?</p>
<pre class="brush:php;toolbar:false;">// 短代码:[current-url]
function current_url() {
return get_permalink($post->ID);
}
add_shortcode( 'current-url', 'current_url' ); ```</pre></p>
使用此代码
雷雷