Multiple rewrite rules link PHP custom articles.
P粉393030917
P粉393030917 2023-07-27 12:19:25
0
1
443
<p>I'm new to PHP and I'm trying to do some rewrite rules to change the structure of some links. I tried some found code and this code only works for the first custom post type I specify in the for loop. I want to make a for loop that changes the links for all custom post types I specify (the names of these post types are in an array), here is my rewrite rule code: </p> <pre class="brush:php;toolbar:false;">function mycustomname_link($post_link, $post = 0) { if($post->post_name === $name_of_my_post) { return home_url('new' .'/'. 'posts'.'/'. $post->post_name .'/'. $post->ID . '/'); } else{ return $post_link; } } add_filter('post_type_link', 'mycustomname_link', 1,3); function mycustomname_rewrites_init(){ add_rewrite_rule('new/posts/([^/] )/([0-9] )?$', 'index.php?post_type=nature_posts&p=$matches[1]&p=$matches[2] ', 'top'); flush_rewrite_rules(); } add_action('init', 'mycustomname_rewrites_init'); </pre> <p>I see there is a return statement in the function so it will only apply the rewrite rules on the first iteration and the first custom post name, how can I make a for loop so that it works for me all post_names specified and not stop on the first iteration? </p>
P粉393030917
P粉393030917

reply all(1)
P粉605233764

You can try this:

In the mycustomname_link function, we added a loop to traverse the $custom_post_types array. For each custom post type, it checks if the current post type matches any name in the array. If there is a match, the rewrite rules will be applied.
Similarly, in the mycustomname_rewrites_init function, we added a loop to register the rewrite rules for all custom post types. Each custom post type will have its own rewrite rules.

With this modification, the rewrite rules will be applied to all custom post types specified in the $custom_post_types array without stopping on the first iteration. Make sure to update the $custom_post_types array with the names of all custom post types you want to include in the rewrite rule.


function mycustomname_link($post_link, $post = 0) {
    $custom_post_types = array('name_of_my_post', 'another_post_type', 'yet_another_post_type'); // Add all your custom post type names here

    foreach ($custom_post_types as $post_type) {
        if ($post->post_type === $post_type) {
            return home_url('new' .'/'. 'posts'.'/'. $post->post_name .'/'. $post->ID . '/');
        }
    }

    return $post_link;
}
add_filter('post_type_link', 'mycustomname_link', 10, 2);

function mycustomname_rewrites_init(){
    $custom_post_types = array('name_of_my_post', 'another_post_type', 'yet_another_post_type'); // Add all your custom post type names here

    foreach ($custom_post_types as $post_type) {
        add_rewrite_rule('new/posts/([^/]+)/([0-9]+)?$', 'index.php?post_type=' . $post_type . '&p=$matches[1]&p=$matches[2]', 'top');
    }

    flush_rewrite_rules();
}
add_action('init', 'mycustomname_rewrites_init');
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!