Taiwan 正體中文
Forums
Home / 疑難排解 / 如何在文章內顯示 Post id
(@batbatbat3)
3 years, 5 months ago
例如文章網址是 http://www.abcde123.com/988
我想在這篇文章內,顯示 : ” 文章篇號 : 988″
請問如何做到?搜尋了幾小時都解決不到…
救各位幫忙
(@hiyottaunits)
Hi @batbatbat3
最快的方法是,你可以在某個佈景或外掛中的functions.php,加上下面的程式。
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]即可。
比較好的方式是自己或找人寫個外掛。
Very helpful thanks a lot !