fredgentil 0 Denunciar post Postado Julho 2, 2013 Não domino muito o HTML e estava querendo tirar o link do título do POST mas não consigo saber onde alterar. Acredito que trecho a ser alterado é esse: <?php printf( __( 'View all posts by %s →', 'slidingdoor' ), get_the_author() ); ?>O que devo fazer??Desde já agradeço a atenção.Frederico Gentilhttp://fredgentil.com.br Continuação do link: "> <?php printf( __( 'View all posts by %s <span class="meta-nav">→</span>', 'slidingdoor' ), get_the_author() ); ?> <a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>"> <?php printf( __( 'View all posts by %s <span class="meta-nav">→</span>', 'slidingdoor' ), get_the_author() ); ?> Compartilhar este post Link para o post Compartilhar em outros sites
bricioweb 0 Denunciar post Postado Julho 2, 2013 Amigo, Isso tá meio confuso, pois, não é aí o local a ser alterado. Busque por algo parecido com isso: <h2 class="entry-title"><a href="<?php the_permalink(); ?> ......... <?php the_title(); ?> ..... </a> </h2> Att. :) Compartilhar este post Link para o post Compartilhar em outros sites
fredgentil 0 Denunciar post Postado Julho 10, 2013 Blz. Vou verificar! Encontrei no loop.php a linha: <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__('Permalink to %s', 'slidingdoor' ), the_title_attribute( 'echo=0' ) ); ?>"rel="bookmark"><?php the_title(); ?></a></h2> O que preciso alterar? Compartilhar este post Link para o post Compartilhar em outros sites
bricioweb 0 Denunciar post Postado Julho 10, 2013 Certo, você pode deixar assim: <h2 class="entry-title"> <?php the_title(); ?> </h2> Dessa forma irá deixar o título dos posts sem link. Vale te informar que você estará alterando apenas no loop.php, caso queira retirar de outras páginas (se estiver com link), precisará fazer a mesma edição, ok! Att. :) Compartilhar este post Link para o post Compartilhar em outros sites