Lets you make a WordPress page (or port or other content type) link to a URL of your choosing (on your site, or on another site), instead of its norma …
Custom Post Type Permalinks
Hospedagem WordPress com plugin Custom Post Type Permalinks
Onde devo hospedar o plugin Custom Post Type Permalinks?
Este plugin pode ser hospedado em qualquer servidor que tenha WordPress configurado. Recomendamos utilizar uma hospedagem seguro, com servidores otimizados para WordPress, como o serviço de hospedagem WordPress da MCO2.
Hospedando o plugin Custom Post Type Permalinks em um provedor seguro
A MCO2, além de instalar o WordPress na versão mais atual para seus clientes, oferece o plugin WP SafePress, um mecanismo exclusivo que protege e aumenta a performance do seu site conjuntamente.
Por que a Hospedagem WordPress funciona melhor na MCO2?
A Hospedagem WordPress funciona melhor pois a MCO2 possui servidores otimizados para WordPress. A instalação de WordPress é diferente de uma instalação trivial, pois habilita imediatamente recursos como otimização de imagens, proteção da página de login, bloqueio de atividades maliciosas diretamente no firewall, cache avançado e HTTPS ativado por padrão. São recursos que potencializam seu WordPress para a máxima segurança e o máximo desempenho.
Custom Post Type Permalinks allow you edit the permalink structure of custom post type.
Change custom taxonomy archive’s permalink to “example.org/post_type/taxonomy_name/term_slug”. Can disable this fix.
And support wp_get_archives( 'post_type=foo' )
and post type date archive (ex. example.com/post_type_slug/date/2010/01/01
).
This Plugin published on GitHub.
Donation: Please send My Wishlist or Paypal
Tradutore
- Japanese(ja) – Toro_Unit
- French(fr_FR) – Geoffrey Crofte
- Russian(ru_RU) – Olart, Natali_Z
Also checkout
Setting on Code
Exemplo
register_post_type( 'foo', array( 'public' => true, 'has_archive' => true, 'rewrite' => array( "with_front" => true ), 'cptp_permalink_structure' => '%post_id%' ) );
Exclude specific post type
add_filter( 'cptp_is_rewrite_supported_by_foo', '__return_false' ); // or add_filter( 'cptp_is_rewrite_supported', function ( $support , $post_type ) { if ( 'foo' === $post_type ) { return false; } return $support; }, 10, 2);
Capturas de tela
screenshot-1.png