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>
use this code for it