web-dev-qa-db-fra.com

Post types personnalisés - Utilisez post_id dans la structure permalien lors de l'utilisation de has_archive => true

J'ai récemment posé cette question Types de messages personnalisés - Utilisez post_id dans la structure permalink et je l'ai résolu, mais comme j'ai activé 'has_archive' => true, la solution proposée ne fonctionne plus. Laisse-moi expliquer:

Je suis après cette structure:

  • archive-events.php =>/news/events /
  • single-events.php =>/news/events /% post_id% /% postname%

Pour obtenir post_id dans un seul événement permalien, il a fallu ajouter %post_id% au slug du CPT, mais lors de l'activation de has_archive => true, la page d'archivage devient le slug; dans ce cas, devenir /news/events/%post_id%/ qui n'est pas valide.

Donc ma question:

Comment avoir post_id dans la structure permalien lorsque has_archive est utilisé => true

4
Brady

Pour obtenir ce dont vous avez besoin, vous devez ajouter une règle de réécriture personnalisée et filtrer la construction de lien permanent. Le code suivant fait les deux:

<?php # -*- coding: utf-8 -*-
/**
 * Plugin Name: Event Permalinks
 */
// Not a WordPress context? Stop.
! defined( 'ABSPATH' ) and exit;

// Wait until all needed functions are loaded.
add_action( 'init', array ( 'Bradys_Events', 'init' ) );

class Bradys_Events
{
    /**
     * Creates a new instance.
     * 
     * @wp-hook init
     * @see    __construct()
     * @return void
     */
    public static function init()
    {
        new self;
    }

    /**
     * Constructor
     */
    public function __construct()
    {
        $args = array(
            'label' => 'events',
            'public' => true,
            'hierarchical' => false,
            'has_archive' => true,
            'rewrite' => array(
                'with_front' => false,
                'slug' => "news/events"
            ),
            'supports' => array( 'title', 'editor', 'thumbnail' )
        );
        register_post_type("events", $args);

        // Prevent WordPress from sending a 404 for our new perma structure.
        add_rewrite_rule(
        '^news/events/(\d+)/[^/]+/?$',
        'index.php?post_type=events&p=$matches[1]',
        'top'
        );

        // Inject our custom structure.
        add_filter( 'post_type_link', array ( $this, 'fix_permalink' ), 1, 2 );
    }

    /**
     * Filter permalink construction.
     * 
     * @wp-hook post_type_link
     * @param  string $post_link default link.
     * @param  int    $id Post ID
     * @return string
     */
    public function fix_permalink( $post_link, $id = 0 )
    {
        $post = &get_post($id);
        if ( is_wp_error($post) || $post->post_type != 'events' )
        {
            return $post_link;
        }
        // preview
        empty ( $post->slug )
            and $post->slug = sanitize_title_with_dashes( $post->post_title );

        return home_url(
            user_trailingslashit( "news/events/$post->ID/$post->slug" )
        );
    }
}

Visitez wp-admin/options-permalink.php une fois pour permettre à WordPress de mettre à jour ses règles de réécriture.

5
fuxia