Hallo!
Ich habe eine Seite, die auf dem Starkers Theme programmiert ist. Nun möchte ich die integrierten Navigationsmöglichkeiten ändern (Farbe, Schriftgrösse....). Also OLDER POSTS, ZURÜCK....
Ich suche in der layout.css, finde aber nichts. Wo sind die Dinge denn hinterlegt und änderbar?
Navigationsdatei ist wo?
-
-
- Gerade eben
- Anzeige
Hallo!
Wenn du gerade an deiner Website arbeitest oder dein aktuelles Hosting überdenkst: Wir betreiben mit NetzLiving eine Hosting-Plattform, die speziell auf Performance, Sicherheit und einfache Verwaltung ausgelegt ist.
- ✔️ Schnelle Ladezeiten (optimiert für WordPress & Co.)
- ✔️ Deutsche Server & DSGVO-konform
- ✔️ Persönlicher Support (kein 0815-Ticket-System)
-
http://dein-niestetal.de/Wordpress/aktuell/
http://dein-niestetal.de/Wordpress/20-feb/ÄLTERE MELDUNGEN und ZURÜCK würde ich gerne anders formatieren.
ÄLTERE MELDUNGEN sollte auch nach unten - ist im Moment hinter dem Footer verstecktDas ist die loop.php - da habe es vergeblich probiert zu ändern:
PHP
Alles anzeigen<?php /** * The loop that displays posts. * * @package WordPress * @subpackage Starkers * @since Starkers HTML5 3.0 */ ?> <?php /* Display navigation to next/previous pages when applicable */ ?> <?php if ( $wp_query->max_num_pages > 1 ) : ?> <nav> <h5><?php next_posts_link( __( '← Ältere Meldungen ', 'starkers' ) ); ?></h5> <?php previous_posts_link( __( 'Jüngere Meldungen →', 'starkers' ) ); ?> </nav> <?php endif; ?> <?php /* If there are no posts to display, such as an empty archive page */ ?> <?php if ( ! have_posts() ) : ?> <h1><?php _e( 'Not Found', 'starkers' ); ?></h1> <p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'starkers' ); ?></p> <?php get_search_form(); ?> <?php endif; ?> <?php while ( have_posts() ) : the_post(); ?> <?php /* How to display posts of the Gallery format. The gallery category is the old way. */ ?> <?php if ( ( function_exists( 'get_post_format' ) && 'gallery' == get_post_format( $post->ID ) ) || in_category( _x( 'gallery', 'gallery category slug', 'starkers' ) ) ) : ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <header> <h2><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'starkers' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2> <?php starkers_posted_on(); ?> </header> <?php if ( post_password_required() ) : ?> <?php the_content(); ?> <?php else : ?> <?php $images = get_children( array( 'post_parent' => $post->ID, 'post_type' => 'attachment', 'post_mime_type' => 'image', 'orderby' => 'menu_order', 'order' => 'ASC', 'numberposts' => 999 ) ); if ( $images ) : $total_images = count( $images ); $image = array_shift( $images ); $image_img_tag = wp_get_attachment_image( $image->ID, 'thumbnail' ); ?> <a href="<?php the_permalink(); ?>"><?php echo $image_img_tag; ?></a> <p><?php printf( _n( 'This gallery contains <a %1$s>%2$s photo</a>.', 'This gallery contains <a %1$s>%2$s photos</a>.', $total_images, 'starkers' ), 'href="' . get_permalink() . '" title="' . sprintf( esc_attr__( 'Permalink to %s', 'starkers' ), the_title_attribute( 'echo=0' ) ) . '" rel="bookmark"', number_format_i18n( $total_images )); ?></p> <?php endif; ?> <?php the_excerpt(); ?> <?php endif; ?> <footer> <?php if ( function_exists( 'get_post_format' ) && 'gallery' == get_post_format( $post->ID ) ) : ?> <a href="<?php echo get_post_format_link( 'gallery' ); ?>" title="<?php esc_attr_e( 'View Galleries', 'starkers' ); ?>"><?php _e( 'More Galleries', 'starkers' ); ?></a> | <?php elseif ( in_category( _x( 'gallery', 'gallery category slug', 'starkers' ) ) ) : ?> <a href="<?php echo get_term_link( _x( 'gallery', 'gallery category slug', 'starkers' ), 'category' ); ?>" title="<?php esc_attr_e( 'View posts in the Gallery category', 'starkers' ); ?>"><?php _e( 'More Galleries', 'twentyten' ); ?></a> | <?php endif; ?> <?php comments_popup_link( __( 'Leave a comment', 'starkers' ), __( '1 Comment', 'starkers' ), __( '% Comments', 'starkers' ) ); ?> <?php edit_post_link( __( 'Edit', 'starkers' ), '| ', '' ); ?> </footer> </article> <?php /* How to display posts of the Aside format. The asides category is the old way. */ ?> <?php elseif ( ( function_exists( 'get_post_format' ) && 'aside' == get_post_format( $post->ID ) ) || in_category( _x( 'asides', 'asides category slug', 'starkers' ) ) ) : ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <?php if ( is_archive() || is_search() ) : // Display excerpts for archives and search. ?> <?php the_excerpt(); ?> <?php else : ?> <?php the_content( __( 'Continue reading →', 'starkers' ) ); ?> <?php endif; ?> <footer> <?php starkers_posted_on(); ?> | <?php comments_popup_link( __( 'Leave a comment', 'starkers' ), __( '1 Comment', 'starkers' ), __( '% Comments', 'starkers' ) ); ?> <?php edit_post_link( __( 'Edit', 'starkers' ), '| ', '' ); ?> </footer> </article> <?php /* How to display all other posts. */ ?> <?php else : ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <header> <h2><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'starkers' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2> <p class="info"><?php starkers_posted_on(); ?></p> </header> <?php if ( is_archive() || is_search() ) : // Only display excerpts for archives and search. ?> <?php the_excerpt(); ?> <?php else : ?> <?php the_content( __( 'Continue reading →', 'starkers' ) ); ?> <?php wp_link_pages( array( 'before' => '<nav>' . __( 'Pages:', 'starkers' ), 'after' => '</nav>' ) ); ?> <?php endif; ?> <footer> <?php if ( count( get_the_category() ) ) : ?> <?php printf( __( 'Posted in %2$s', 'starkers' ), 'entry-utility-prep entry-utility-prep-cat-links', get_the_category_list( ', ' ) ); ?> | <?php endif; ?> <?php $tags_list = get_the_tag_list( '', ', ' ); if ( $tags_list ): ?> <?php printf( __( 'Tagged %2$s', 'starkers' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list ); ?> | <?php endif; ?> <?php comments_popup_link( __( 'Leave a comment', 'starkers' ), __( '1 Comment', 'starkers' ), __( '% Comments', 'starkers' ) ); ?> <?php edit_post_link( __( 'Edit', 'starkers' ), '| ', '' ); ?> </footer> </article> <hr></hr> <?php comments_template( '', true ); ?> <?php endif; // This was the if statement that broke the loop into three parts based on categories. ?> <?php endwhile; // End the loop. Whew. ?> <?php /* Display navigation to next/previous pages when applicable */ ?> <?php if ( $wp_query->max_num_pages > 1 ) : ?> <nav> <?php next_posts_link( __( '← Ältere Meldungen ', 'starkers' ) ); ?> <?php previous_posts_link( __( 'Jüngere Meldungen →', 'starkers' ) ); ?> </nav> <?php endif; ?> -
für die Älteren/Jüngeren Navi schreibst du am besten den Code um:
PHP<nav> [COLOR="#FF0000"]<div class="next_prev">[/COLOR] [COLOR="#FF0000"]<div class="next">[/COLOR]<?php next_posts_link( __( '← Ältere Meldungen ', 'starkers' ) ); ?>[COLOR="#FF0000"]</div>[/COLOR] [COLOR="#FF0000"]<div class="prev">[/COLOR]<?php previous_posts_link( __( 'Jüngere Meldungen →', 'starkers' ) ); ?>[COLOR="#FF0000"]</div>[/COLOR] [COLOR="#FF0000"]</div>[/COLOR] </nav>
Dann kannst du die alles über die neuen classen stylen.Für die Höhe wg. dem überdecken des Footers, kannst du in der style.css bei section das padding für unten erhöhen, versuche mal 50px.
PS: Und bitte, wenn du hier Code postest, die Code-Buttons nutzen, dann lässt sich alles besser lesen.
-
Danke.
Ich verstehe das so: Die loop.php ändere ich wie Du beschrieben hast.
Dann in der css die CLASSEN anlegen und dementsprechend formatieren. Setze ich die in der css ganz ans Ende, oder muss ich die in den betreffenden Abschnitt einfügen? Wie muss ich die CLASS nennen?Danke für den Hinweis mit dem Code Button!!:grin:
-
die Classen kannst du gern am Ende der style.css stylen. Die Namen der Classen kannst du so vergeben wie in meinem Bsp. oder du denkst dir selber welche aus.
-
die Classen kannst du gern am Ende der style.css stylen. Die Namen der Classen kannst du so vergeben wie in meinem Bsp. oder du denkst dir selber welche aus.
Super. Hat geklappt. Habe erst nicht gecheckt, wie ich anfangen muss. Dann habe ich einfach abgeschaut.
Jetzt mitmachen!
Sie haben noch kein Benutzerkonto auf unserer Seite? Registrieren Sie sich kostenlos und nehmen Sie an unserer Community teil!