Hay 2 puntos de ataque que cubrir cuando agrega reglas de reescritura de tipo de publicación personalizada:
Reescribir reglas
Esto sucede cuando las reglas de reescritura se generan wp-includes/rewrite.php
en WP_Rewrite::rewrite_rules()
. WordPress le permite filtrar las reglas de reescritura para elementos específicos como publicaciones, páginas y varios tipos de archivos. Donde vea posttype_rewrite_rules
la posttype
parte debe ser el nombre de su tipo de publicación personalizada. Alternativamente, puede usar el post_rewrite_rules
filtro siempre que no elimine las reglas de publicación estándar también.
A continuación, necesitamos la función para generar realmente las reglas de reescritura:
// add our new permastruct to the rewrite rules
add_filter( 'posttype_rewrite_rules', 'add_permastruct' );
function add_permastruct( $rules ) {
global $wp_rewrite;
// set your desired permalink structure here
$struct = '/%category%/%year%/%monthnum%/%postname%/';
// use the WP rewrite rule generating function
$rules = $wp_rewrite->generate_rewrite_rules(
$struct, // the permalink structure
EP_PERMALINK, // Endpoint mask: adds rewrite rules for single post endpoints like comments pages etc...
false, // Paged: add rewrite rules for paging eg. for archives (not needed here)
true, // Feed: add rewrite rules for feed endpoints
true, // For comments: whether the feed rules should be for post comments - on a singular page adds endpoints for comments feed
false, // Walk directories: whether to generate rules for each segment of the permastruct delimited by '/'. Always set to false otherwise custom rewrite rules will be too greedy, they appear at the top of the rules
true // Add custom endpoints
);
return $rules;
}
Lo principal a tener en cuenta aquí si decides jugar es el booleano 'Walk directorios'. Genera reglas de reescritura para cada segmento de un permastruct y puede causar desajustes de reglas de reescritura. Cuando se solicita una URL de WordPress, la matriz de reglas de reescritura se verifica de arriba a abajo. Tan pronto como se encuentre una coincidencia, cargará todo lo que haya encontrado, por ejemplo, si su permastruct tiene una coincidencia codiciosa, por ejemplo. para /%category%/%postname%/
y los directorios walk están activados, generará reglas de reescritura tanto para /%category%/%postname%/
AND /%category%/
que coincidirán con cualquier cosa. Si eso sucede demasiado pronto, estás jodido.
Enlaces permanentes
Esta es la función que analiza los enlaces permanentes de tipo de publicación y convierte una permastruct (por ejemplo, '/% year% /% monthnum% /% postname% /') en una URL real.
La siguiente parte es un ejemplo simple de lo que idealmente sería una versión de la get_permalink()
función que se encuentra en wp-includes/link-template.php
. Los enlaces permanentes de publicaciones personalizadas se generan mediante get_post_permalink()
una versión muy diluida de get_permalink()
. get_post_permalink()
se filtra por post_type_link
lo que estamos usando eso para hacer una permastructura personalizada.
// parse the generated links
add_filter( 'post_type_link', 'custom_post_permalink', 10, 4 );
function custom_post_permalink( $permalink, $post, $leavename, $sample ) {
// only do our stuff if we're using pretty permalinks
// and if it's our target post type
if ( $post->post_type == 'posttype' && get_option( 'permalink_structure' ) ) {
// remember our desired permalink structure here
// we need to generate the equivalent with real data
// to match the rewrite rules set up from before
$struct = '/%category%/%year%/%monthnum%/%postname%/';
$rewritecodes = array(
'%category%',
'%year%',
'%monthnum%',
'%postname%'
);
// setup data
$terms = get_the_terms($post->ID, 'category');
$unixtime = strtotime( $post->post_date );
// this code is from get_permalink()
$category = '';
if ( strpos($permalink, '%category%') !== false ) {
$cats = get_the_category($post->ID);
if ( $cats ) {
usort($cats, '_usort_terms_by_ID'); // order by ID
$category = $cats[0]->slug;
if ( $parent = $cats[0]->parent )
$category = get_category_parents($parent, false, '/', true) . $category;
}
// show default category in permalinks, without
// having to assign it explicitly
if ( empty($category) ) {
$default_category = get_category( get_option( 'default_category' ) );
$category = is_wp_error( $default_category ) ? '' : $default_category->slug;
}
}
$replacements = array(
$category,
date( 'Y', $unixtime ),
date( 'm', $unixtime ),
$post->post_name
);
// finish off the permalink
$permalink = home_url( str_replace( $rewritecodes, $replacements, $struct ) );
$permalink = user_trailingslashit($permalink, 'single');
}
return $permalink;
}
Como se mencionó, este es un caso muy simplificado para generar un conjunto de reglas de reescritura personalizado y enlaces permanentes, y no es particularmente flexible, pero debería ser suficiente para comenzar.
Engañando
Escribí un complemento que le permite definir permastructs para cualquier tipo de publicación personalizada, pero como puede usar %category%
en la estructura de enlaces permanentes para publicaciones, mi complemento admite %custom_taxonomy_name%
para cualquier taxonomía personalizada que tenga también, donde custom_taxonomy_name
está el nombre de su taxonomía, por ejemplo. %club%
.
Funcionará como cabría esperar con taxonomías jerárquicas / no jerárquicas.
http://wordpress.org/extend/plugins/wp-permastructure/