TwentyTen

TwentyTen

Theme-Seite & Download
http://wordpress.org/themes/twentyten

Anpassungen

Standardanpassungen

body{
font-family: Candara, Georgia, "Bitstream Charter", serif;
}

/* 
Benutzerdefinierter Hintergrund
Wichtig: !important, wird ansonsten wieder überschrieben
*/
body.custom-background {
background-color:#685c6b !important;
}

#wrapper{
background: #271E2B;
margin-top:0px;
}

#header{
/* Abstand Titelbild-oben */
padding-top:0px;
}
#branding img{
border-style:none;
}
/* Seitentitel und Beschribung */
#site-title{display:none;}
#site-description{display:none;}

#footer{}

#colophon{
border-top:solid 1px #FAEBEB;
}

#site-info a, a:visited{
color:#FFAEB9;
}

/* Seitentitel ausblenden */
#content h1.entry-title{display:none;}

 

Navigation

Zeilenumbruch im Menü verhindern:
width: auto; white-space:nowrap;

#access ul ul a {
background: #333;
line-height: 1em; padding: 10px;
height: auto;

width: auto;
white-space:nowrap;

}

 

Bild und Grafik

Bildunterschrift

.wp-caption p.wp-caption-text{
color: #888;
font-size: 12px;
margin: 5px;
}

/* bzw. :#content .wp-caption p.wp-caption-text, .wp-caption p.wp-caption-text */

Blidschatten

.wp-caption img{
box-shadow: 5px 5px 3px #888;
}

 

Position der Sidebar (links/rechts)

/*Sidebar rechts*/

#container {
float: left;
margin: 0 -240px 0 0;
width: 100%; }

#content { margin: 0 280px 0 20px; }

#primary, #secondary {
float: right;
overflow: hidden;
width: 220px; }

/*Sidebar links*/

#container {
float:right;
margin-right:-260px;
width: 100%; }

#content {margin: 0 280px 0 20px; }

#primary, #secondary {
float:left;
clear:left;
margin-left: 10px; }

 

PHP-Code-Anpassungen

Seitentitel ausblenden

Damit nur Seitentitel, aber nicht Seitenlinks in der Suche ausgeblendet werden, kann die Funktion the_title() auskommentiert/gelöscht werden.

Für Seiten: loop-page.php

<?php if ( is_front_page() ) { ?> <h2><?php /*the_title();*/ ?></h2> <?php } else { ?> <h1><?php /*the_title();*/ ?></h1> <?php } ?>

Für Posts: loop-single.php

<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<h1><?php /*the_title();*/?></h1>
</div>

 

Navigationsmenü ausblenden

In header.php entfernen:

<div id="access" role="navigation">
<?php /* Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff */ ?> <div><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'twentyten' ); ?>"> <?php _e( 'Skip to content', 'twentyten' ); ?></a></div> <?php /* Our navigation menu. If one isn't filled out, wp_nav_menu falls back to wp_page_menu. The menu assiged to the primary position is the one used. If none is assigned, the menu with the lowest ID is used. */ ?>

<?php wp_nav_menu( array( 'container_class' => 'menu-header', 'theme_location' => 'primary' ) ); ?>
</div><!-- #access -->

 

Links & Tutorials

http://www.grundzeit.de/tutorial-wordpress-einrichten-teil-2-header-und-kopfzeilentext-formatieren/