Re-Styling Twenty Ten Tags Archives Page
-
Hello!
I’m designing a template and I wanted to re-style the tag archive page.
As the webpage will be for an artist, I decided to organize each project into a post with some tags. One of the navigation methods will be through a WP-Cumulus Flash tag cloud, where you’ll find key words that identify the feeling that each project passes.
Part of the webpage is online at ameliatoledo.com. It’s just a sketchy… There’s no actual content over there.
Once I click on each tag I want to display the entire posts, as each post will be a single image of the work with two lines of reference.
So far I managed to hide the page title, the entry-meta and the entry utility but nothing appears on my page!
I already created a post called espa?o with the tag “espa?o” but when you click on the tag on the cloud, nothing appears.
The changes I did to the css are:
.page-title { display: none; } .entry-meta { display: none; } .entry-utility { display: none; }
The Tag Archive php file looks like that (original so far):
<?php /** * The template for displaying Tag Archive pages. * * @package WordPress * @subpackage Twenty_Ten * @since Twenty Ten 1.0 */ get_header(); ?> <div id="container"> <div id="content" role="main"> <h1 class="page-title"><?php printf( __( 'Tag Archives: %s', 'twentyten' ), '<span>' . single_tag_title( '', false ) . '</span>' ); ?></h1> <?php /* Run the loop for the tag archive to output the posts * If you want to overload this in a child theme then include a file * called loop-tag.php and that will be used instead. */ get_template_part( 'loop', 'tag' ); ?> </div><!-- #content --> </div><!-- #container --> <?php get_sidebar(); ?> <?php get_footer(); ?>
Anyone have tips on how can I manage to display the complete posts? I don’t want any text except from the post itself. After I’ll do the same changes to the category archives pages…
Thanks a lot! Any help is welcome!
Cheers,
P.T.
- The topic ‘Re-Styling Twenty Ten Tags Archives Page’ is closed to new replies.