将此添加到函数后。php并根据您的需要对其进行定制,请确保访问管理中的设置>永久链接以刷新重写。
add_action( \'init\', \'custom_rewrite_rules\' );
function custom_rewrite_rules()
{
add_rewrite_rule(
"/([^/]*)/custom_post_type_slug/([^/]*)/?",
\'index.php?post_type=custom_post_type_slug&Custom_dynamic_string=$matches[1]&custom_post_type_slug=$matches[2]\',
\'top\'
);
/**
* Add the above to Query Vars
*/
add_filter( \'query_vars\', \'custom_query_vars\' );
}
function custom_query_vars( $query_vars )
{
$query_vars[] = \'Custom_dynamic_string\';
return $query_vars;
}
然后,在模板中,可以使用以下函数获取“Custom\\u dynamic\\u string”(或您决定调用它的任何内容)变量:
$custom_dynamic_string = get_query_var(\'Custom_dynamic_string\');