Permalink – /Êtegory%/%postname%.html
-
Olá meu nome é Alexandre, estou usando o wordpress a pouco tempo e já estou adorando os plugins e themes…
Porém estou com um problema (acho que meio difÃcil de resolver)…No Permalink estou usando /%category%/%postname%.html
O Problema:
quando tenho 2 post com o mesmo nome (em categorias diferentes) os 2 são listados.
Como resolver isso?Pesquisando eu descobri isso:
<?php
// retrieve one post with an ID of 5
query_posts(‘p=5’);global $more;
// set $more to 0 in order to only get the first part of the post
$more = 0;// the Loop
while (have_posts()) : the_post();
// the content of the post
the_content(‘Read the full post »’);
endwhile;
?>Outro Problema:
como trocar o “5” (query_posts(‘p=5’);) automaticamente?mesmo tendo o link: /categoria/post.html
minha inteção é pegar o ID referente ao “post.html” e dai carregar somente ele…
desde já agradeço…
- O tópico ‘Permalink – /Êtegory%/%postname%.html’ está fechado para novas respostas.