Home do wordpress somente com texto, sem imagens
Veja como retirar as imagens da home do WordPress.
Se você deseja que a home do seu Blog WordPress contenha somente textos sem imagens, siga os seguintes passos:
- Abra o arquivo content.php
- Localize o seguinte código:
<?php if ( is_search() ) : // Only display Excerpts for Search ?> <div> <?php the_excerpt(); ?> </div><!-- .entry-summary --> <?php else : ?> <div> <?php the_content( __( 'Continue reading <span>→</span>', 'twentyeleven' ) ); ?> <?php wp_link_pages( array( 'before' => '<div><span>' . __( 'Pages:', 'twentyeleven' ) . '</span>', 'after' => '</div>' ) ); ?> </div><!-- .entry-content --> <?php endif; ?>
- No lugar do código acima insira o seguinte código:
<?php $content = the_content(); $postOutput = preg_replace('/<img[^>]+./','', $content); echo $postOutput; ?>
http://bavotasan.com/2009/removing-images-from-a-wordpress-post/