PHP Wordpress自定义帖子类型:帖子网址中的POST ID
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP Wordpress自定义帖子类型:帖子网址中的POST ID相关的知识,希望对你有一定的参考价值。
add_action('init', 'post-type_rewrite');
function post-type_rewrite() {
global $wp_rewrite;
$queryarg = 'post_type=post-type&p=';
$wp_rewrite->add_rewrite_tag('%post_id%', '([^/]+)', $queryarg);
$wp_rewrite->add_permastruct('post-type', '/post-type/%post_id%', false);
}
add_filter('post_type_link', 'post-type_permalink', 1, 3);
function post-type_permalink($post_link, $id = 0, $leavename, $sample) {
global $wp_rewrite;
$post = &get_post($id);
if ( is_wp_error( $post ) )
return $post;
$newlink = $wp_rewrite->get_extra_permastruct('bodumanzaru');
$newlink = str_replace("%post_id%", $post->ID, $newlink);
$newlink = home_url(user_trailingslashit($newlink));
return $newlink;
}
以上是关于PHP Wordpress自定义帖子类型:帖子网址中的POST ID的主要内容,如果未能解决你的问题,请参考以下文章
WordPress 自定义帖子类型存档-<帖子类型>.php 不起作用
php Wordpress - 列出所有(自定义帖子类型)帖子类别
PHP 检查当前帖子类型是否为自定义帖子类型 - WordPress
php 使用自定义帖子类型获取自定义WordPress菜单
php 使用自定义帖子类型获取自定义WordPress菜单
php WordPress - 自定义帖子类型循环