首頁  >  問答  >  主體

WordPress中如何使用get_permalink函數來取得目前頁面URL,包括查詢字串?

<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粉404539732P粉404539732439 天前578

全部回覆(1)我來回復

  • P粉613735289

    P粉6137352892023-08-31 10:59:39

    use this code for it

    function current_url() {
    global $wp;
    echo home_url( $wp->request );
    }
    add_shortcode( 'current-url', 'current_url' );

    回覆
    0
  • 取消回覆