Support » 疑難雜症 » 如何在文章內顯示 Post id

正在檢視 2 則回覆 - 1 至 2 (共計 2 則)
  • Hi @batbatbat3

    最快的方法是,你可以在某個佈景或外掛中的functions.php,加上下面的程式。

    add_shortcode('return_post_id', 'my_function_return_post_id');
    
    function my_function_return_post_id() {
        return get_the_ID();
    }

    然後你在文章中加上[return_post_id]即可。

    比較好的方式是自己或找人寫個外掛。

    Thread Starter batbatbat3

    (@batbatbat3)

    Very helpful thanks a lot !

正在檢視 2 則回覆 - 1 至 2 (共計 2 則)
  • The topic ‘如何在文章內顯示 Post id’ is closed to new replies.