我想将Wordpress帖子链接转换为帖子ID。 例如,我有一个永久链接的帖子
site.com/the-first-post
现在我希望有这个帖子ID。 是否有这样的功能:Sample_function(" site.com/the-first-post")输出帖子ID?
答案 0 :(得分:0)
Wordpress具有内置函数,用于检索页面/帖子的id给定其URL,或者在失败时为零。可以认为是get_permalink()的相反功能。
url_to_postid( site_url('the_slug') ); //the-first-post
您可以在此处找到详细信息: https://codex.wordpress.org/Function_Reference/url_to_postid