- Home
- Categorie
- Coding e Sistemistica
- WordPress
- Feed generano errore 404
-
Grazie mille, aspetto tue notizie allora!
-
Scusami, non avevo visto!
Il custom type si chiama "rubriche". Alcuni post vengono assegnati a una rubrica, come facessero parte di una categoria.
-
Non ho quei parametri:
//hook into the init action and call create_post_taxonomies when it firesadd_action( 'init', 'create_post_taxonomies', 0 ); //create two taxonomies, genres and writers for the post type "post" function create_post_taxonomies() { $labels = array( 'name' => _x( 'Rubriche', 'taxonomy general name' ), 'singular_name' => _x( 'Rubrica', 'taxonomy singular name' ), 'search_items' => __( 'Cerca rubriche' ), 'all_items' => __( 'Tutte le rubriche' ), 'parent_item' => __( 'Genitore rubrica' ), 'parent_item_colon' => __( 'Genitore rubrica:' ), 'edit_item' => __( 'Modifica rubrica' ), 'update_item' => __( 'Aggiorna rubrica' ), 'add_new_item' => __( 'Aggiungi una nuova rubrica' ), 'new_item_name' => __( 'Nome nuova rubrica' ), 'menu_name' => __( 'Rubriche' ) ); $rewrite = array( 'slug' => '', 'with_front' => false, 'hierarchical' => false, ); $args = array( 'labels' => $labels, 'hierarchical' => true, 'public' => true, 'show_ui' => true, 'show_admin_column' => true, 'show_in_nav_menus' => true, 'show_tagcloud' => true, 'rewrite' => $rewrite, ); register_taxonomy( 'rubriche', array( 'post' ), $args ); }
-
Dici che provando ad eliminare la nuova tassonomia il problema potrebbe risolversi?
-
Il periodo in effetti coincide. Che mi consigli di fare?
-
Ok, intanto ti ringrazio moltissimo per la pazienza!
PS: Ho deciso di rimuovere la tassonomia personalizzata e di usare delle categorie, ma il problema non sembra dipendesse da quello (isignoridellemosche.it/feed).
-
In realtà c'è :
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="feeds.feedburner.com/ISignoriDelleMosche" />
E anche inserendo questo, non cambia nulla:
<link rel="alternate" type="application/rss+xml" href="isignoridellemosche.it/feed/" />
-
Non è inserito manualmente, c'è questa stringa (WooThemes):
[PHP]<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php if ( get_option('woo_feed_url') <> "" ) { echo get_option('woo_feed_url'); } else { echo get_bloginfo_rss('rss2_url'); } ?>" />[/PHP]E non credo sia qui l'errore: fino a febbraio ha sempre funzionato e qui non ho toccato nulla.