Dave James Miller, en GitHub, me clavó este. Nada del trabajo es mío, solo estoy publicando su código envuelto en un pingüino ya que funciona perfectamente como se anuncia:
<?php
/**
* Plugin Name: Set default category from url parameter
* Plugin URI: https://gist.github.com/davejamesmiller/1966543
* Description: enables you to setup new post links with the post_title, category and tags in the url: <code><a href="<?= esc_attr(admin_url('post-new.php?post_title=Default+title&category=category1&tags=tag1,tag2')) ?>">New post</a></code>
* Version: 0.0.1
* Author: davejamesmiller
* Author URI: https://gist.github.com/davejamesmiller
*/
// I used this code to automatically set the default post title, category and
// tags for a new WordPress post based on which link was clicked. It could also
// be tweaked to hard-code the values instead of using request parameters.
add_filter('wp_get_object_terms', function($terms, $object_ids, $taxonomies, $args)
{
if (!$terms && basename($_SERVER['PHP_SELF']) == 'post-new.php') {
// Category - note: only 1 category is supported currently
if ($taxonomies == "'category'" && isset($_REQUEST['category'])) {
$id = get_cat_id($_REQUEST['category']);
if ($id) {
return array($id);
}
}
// Tags
if ($taxonomies == "'post_tag'" && isset($_REQUEST['tags'])) {
$tags = $_REQUEST['tags'];
$tags = is_array($tags) ? $tags : explode( ',', trim($tags, " \n\t\r\0\x0B,") );
$term_ids = array();
foreach ($tags as $term) {
if ( !$term_info = term_exists($term, 'post_tag') ) {
// Skip if a non-existent term ID is passed.
if ( is_int($term) )
continue;
$term_info = wp_insert_term($term, 'post_tag');
}
$term_ids[] = $term_info['term_id'];
}
return $term_ids;
}
}
return $terms;
}, 10, 4);
Conéctese
wp_insert_post
, pruebe el estado de la publicaciónauto-draft
y la URL de unGET
parámetro.Pero primero necesitamos una función auxiliar para obtener y desinfectar el
GET
parámetro:Ahora el controlador de borrador automático:
Esto funciona solo si
get_default_post_to_edit()
se llamó con el segundo parámetro$create_in_db
establecido enTRUE
. Para detectar el otro caso, debe filtrar la opcióndefault_category
:Ahora puede usar el parámetro
post_cat
para pasar una lista separada por comas de babosas de categoría:Ver también:
fuente
Creo que puede elegir la opción predeterminada
default_category
y filtraroption_default_category
esto, si la url tiene un parámetro para la categoría, como esta fuente de ejemplo. Úselo como complemento, pruébelo. Fue escrito desde cero y no probado.El parámetro url es
post_cat
y puede establecer la categoría, como esta url:/wp-admin/post-new.php?post_cat=categoryname
fuente
Me doy cuenta de que esto ya ha sido respondido, pero quería agregar mi propia toma. Lo he agregado a una esencia aquí https://gist.github.com/malcalevak/ba05b4fbed0c6e33ac8c18c1451icsoft57
Sin embargo, para ahorrarle la molestia, aquí está el código:
Al igual que todos los demás, lo activaría a través de /wp-admin/post-new.php?category=categoryname
Para su información, si está utilizando campos personalizados avanzados, como @Aphire, esto funcionará.
fuente