Wordpress自定义Post Type:Post url中的Post ID

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress自定义Post Type:Post url中的Post ID相关的知识,希望对你有一定的参考价值。

so you want to have your url structure like :
yourdomain.com/post-type/286

add the following snippet to your functions.php and change the post-type names where appropriate
  1. add_action('init', 'post-type_rewrite');
  2. function post-type_rewrite() {
  3. global $wp_rewrite;
  4. $queryarg = 'post_type=post-type&p=';
  5. $wp_rewrite->add_rewrite_tag('%post_id%', '([^/]+)', $queryarg);
  6. $wp_rewrite->add_permastruct('post-type', '/post-type/%post_id%', false);
  7. }
  8.  
  9. add_filter('post_type_link', 'post-type_permalink', 1, 3);
  10. function post-type_permalink($post_link, $id = 0, $leavename, $sample) {
  11. global $wp_rewrite;
  12. $post = &get_post($id);
  13. if ( is_wp_error( $post ) )
  14. return $post;
  15. $newlink = $wp_rewrite->get_extra_permastruct('bodumanzaru');
  16. $newlink = str_replace("%post_id%", $post->ID, $newlink);
  17. $newlink = home_url(user_trailingslashit($newlink));
  18. return $newlink;
  19. }

以上是关于Wordpress自定义Post Type:Post url中的Post ID的主要内容,如果未能解决你的问题,请参考以下文章

Wordpress自定义Post类型自定义分类法和查询

Wordpress注册自定义Post类型和自定义分类法

wordpress调用自定义post_type文章

wordpress自定义post类型的自定义列

检查当前post类型是否为自定义post类型€“WordPress

WordPress注册自定义post类型代码