Skip to main content
added 154 characters in body
Source Link

My archive-noticias.php loop is...

<?php while(have_posts()): the_post(); ?> <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 

My archive-noticias.php loop is...

<?php while(have_posts()): the_post(); ?> <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 
custom post type added
Source Link

here my custom post type in functions.php

function crear_tipo_noticias() { $labels = array( 'name' => _x( 'Noticias', 'Post Type General Name', 'text_domain' ), 'singular_name' => _x( 'Noticia', 'Post Type Singular Name', 'text_domain' ), 'menu_name' => __( 'Noticias', 'text_domain' ), 'parent_item_colon' => __( 'Noticia Padre', 'text_domain' ), 'all_items' => __( 'Noticias', 'text_domain' ), 'view_item' => __( 'Ver Noticia', 'text_domain' ), 'add_new_item' => __( 'Añadir Noticia Nueva', 'text_domain' ), 'add_new' => __( 'Añadir', 'text_domain' ), 'edit_item' => __( 'Editar Noticia', 'text_domain' ), 'update_item' => __( 'Actualizar', 'text_domain' ), 'search_items' => __( 'Buscar Noticias', 'text_domain' ), 'not_found' => __( 'Noticias no encontradas', 'text_domain' ), 'not_found_in_trash' => __( 'Noticias no encontradas en Papelera', 'text_domain' ), ); $rewrite = array( 'slug' => 'noticia', 'with_front' => true, 'pages' => true, 'feeds' => true, ); $args = array( 'label' => __( 'noticia', 'text_domain' ), 'description' => __( 'Noticias relacionadas con Tuppersex', 'text_domain' ), 'labels' => $labels, 'supports' => array( 'title', 'editor', 'comments', 'thumbnail', 'custom-fields'), 'taxonomies' => array( 'category', 'post_tag' ), 'hierarchical' => false, 'public' => true, 'show_ui' => true, 'show_in_menu' => true, 'show_in_nav_menus' => true, 'show_in_admin_bar' => true, 'menu_position' => 5, 'menu_icon' => site_url().'/wp-content/plugins/my_plugin/images/logo.png', 'can_export' => true, 'has_archive' => 'noticias', 'exclude_from_search' => false, 'query_var' => 'noticias', 'rewrite' => $rewrite, 'capability_type' => 'post', ); register_post_type('noticias', $args); } add_action('init', 'crear_tipo_noticias', 0); 

here my custom post type in functions.php

function crear_tipo_noticias() { $labels = array( 'name' => _x( 'Noticias', 'Post Type General Name', 'text_domain' ), 'singular_name' => _x( 'Noticia', 'Post Type Singular Name', 'text_domain' ), 'menu_name' => __( 'Noticias', 'text_domain' ), 'parent_item_colon' => __( 'Noticia Padre', 'text_domain' ), 'all_items' => __( 'Noticias', 'text_domain' ), 'view_item' => __( 'Ver Noticia', 'text_domain' ), 'add_new_item' => __( 'Añadir Noticia Nueva', 'text_domain' ), 'add_new' => __( 'Añadir', 'text_domain' ), 'edit_item' => __( 'Editar Noticia', 'text_domain' ), 'update_item' => __( 'Actualizar', 'text_domain' ), 'search_items' => __( 'Buscar Noticias', 'text_domain' ), 'not_found' => __( 'Noticias no encontradas', 'text_domain' ), 'not_found_in_trash' => __( 'Noticias no encontradas en Papelera', 'text_domain' ), ); $rewrite = array( 'slug' => 'noticia', 'with_front' => true, 'pages' => true, 'feeds' => true, ); $args = array( 'label' => __( 'noticia', 'text_domain' ), 'description' => __( 'Noticias relacionadas con Tuppersex', 'text_domain' ), 'labels' => $labels, 'supports' => array( 'title', 'editor', 'comments', 'thumbnail', 'custom-fields'), 'taxonomies' => array( 'category', 'post_tag' ), 'hierarchical' => false, 'public' => true, 'show_ui' => true, 'show_in_menu' => true, 'show_in_nav_menus' => true, 'show_in_admin_bar' => true, 'menu_position' => 5, 'menu_icon' => site_url().'/wp-content/plugins/my_plugin/images/logo.png', 'can_export' => true, 'has_archive' => 'noticias', 'exclude_from_search' => false, 'query_var' => 'noticias', 'rewrite' => $rewrite, 'capability_type' => 'post', ); register_post_type('noticias', $args); } add_action('init', 'crear_tipo_noticias', 0); 
added 79 characters in body
Source Link

I created a custom post type named "noticias" and duplicated archive.php with name archive-noticias.php. Everything works but when pagination actived, don't work page 2, 3....

I use plugin "T5 Page to Seite" for change "page" slug with "pagina" slug.

<?php # -*- coding: utf-8 -*- /** * Plugin Name: T5 Page to Seite * Description: Ersetzt <code>/page/</code> durch <code>/seite/</code>. * Author: Thomas Scholz <[email protected]> * Author URI: http://toscho.de * License: MIT * License URI: http://www.opensource.org/licenses/mit-license.php */ if ( ! function_exists( 't5_page_to_seite' ) ) { register_activation_hook( __FILE__ , 't5_flush_rewrite_on_init' ); register_deactivation_hook( __FILE__ , 't5_flush_rewrite_on_init' ); add_action( 'init', 't5_page_to_seite' ); function t5_page_to_seite() { $GLOBALS['wp_rewrite']->pagination_base = 'pagina'; } function t5_flush_rewrite_on_init() { add_action( 'init', 'flush_rewrite_rules', 11 ); } } 

And add this line to .htaccess

RedirectMatch Permanent ^/(.*)/page/(.*) /$1/pagina/$2 

I'm trying check every posts of stackoverflow and WordpressAnswers but don't work. please, help me.

MONKEYMAN REWRITE ANALYZER RESULTS

http://www.vektorlab.com/rewrite.html

I created a custom post type named "noticias" and duplicated archive.php with name archive-noticias.php. Everything works but when pagination actived, don't work page 2, 3....

I use plugin "T5 Page to Seite" for change "page" slug with "pagina" slug.

<?php # -*- coding: utf-8 -*- /** * Plugin Name: T5 Page to Seite * Description: Ersetzt <code>/page/</code> durch <code>/seite/</code>. * Author: Thomas Scholz <[email protected]> * Author URI: http://toscho.de * License: MIT * License URI: http://www.opensource.org/licenses/mit-license.php */ if ( ! function_exists( 't5_page_to_seite' ) ) { register_activation_hook( __FILE__ , 't5_flush_rewrite_on_init' ); register_deactivation_hook( __FILE__ , 't5_flush_rewrite_on_init' ); add_action( 'init', 't5_page_to_seite' ); function t5_page_to_seite() { $GLOBALS['wp_rewrite']->pagination_base = 'pagina'; } function t5_flush_rewrite_on_init() { add_action( 'init', 'flush_rewrite_rules', 11 ); } } 

And add this line to .htaccess

RedirectMatch Permanent ^/(.*)/page/(.*) /$1/pagina/$2 

I'm trying check every posts of stackoverflow and WordpressAnswers but don't work. please, help me.

I created a custom post type named "noticias" and duplicated archive.php with name archive-noticias.php. Everything works but when pagination actived, don't work page 2, 3....

I use plugin "T5 Page to Seite" for change "page" slug with "pagina" slug.

<?php # -*- coding: utf-8 -*- /** * Plugin Name: T5 Page to Seite * Description: Ersetzt <code>/page/</code> durch <code>/seite/</code>. * Author: Thomas Scholz <[email protected]> * Author URI: http://toscho.de * License: MIT * License URI: http://www.opensource.org/licenses/mit-license.php */ if ( ! function_exists( 't5_page_to_seite' ) ) { register_activation_hook( __FILE__ , 't5_flush_rewrite_on_init' ); register_deactivation_hook( __FILE__ , 't5_flush_rewrite_on_init' ); add_action( 'init', 't5_page_to_seite' ); function t5_page_to_seite() { $GLOBALS['wp_rewrite']->pagination_base = 'pagina'; } function t5_flush_rewrite_on_init() { add_action( 'init', 'flush_rewrite_rules', 11 ); } } 

And add this line to .htaccess

RedirectMatch Permanent ^/(.*)/page/(.*) /$1/pagina/$2 

I'm trying check every posts of stackoverflow and WordpressAnswers but don't work. please, help me.

MONKEYMAN REWRITE ANALYZER RESULTS

http://www.vektorlab.com/rewrite.html

Source Link
Loading