WordPress中如何使用get_permalink函數來取得目前頁面URL,包括查詢字串?
P粉404539732
P粉404539732 2023-08-30 17:13:25
0
1
574
<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>
P粉404539732
P粉404539732

全部回覆(1)
P粉613735289

use this code for it

function current_url() {
global $wp;
echo home_url( $wp->request );
}
add_shortcode( 'current-url', 'current_url' );
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!