ich verzweifel gerade an dem plugin "WP page numbers". Ich habde den Code des Plugins in meine Loop eingebaut und da gehts schon los: Hab ich das an die richtige Stelle gesetzt? Es ist die allerletzte Zeile...
<?php
/**
* @package WordPress
* @subpackage Coraline
* @since Coraline 1.0
*/
?>
<?php /* If there are no posts to display, such as an empty archive page */ ?>
<?php if ( ! have_posts() ) : ?>
<div id="post-0" class="post error404 not-found">
<h1 class="entry-title"><?php _e( 'Not Found', 'coraline' ); ?></h1>
<div class="entry-content">
<p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'coraline' ); ?></p>
<?php get_search_form(); ?>
</div><!-- .entry-content -->
</div><!-- #post-0 -->
<?php endif; ?>
<?php
// Start the Loop.
$options = get_option( 'coraline_theme_options' ); while ( have_posts() ) : the_post(); ?>
<?php /* How to display posts in the Gallery category. */ ?>
<?php if ( isset( $options['gallery_category'] ) && '0' != $options['gallery_category'] && in_category( $options['gallery_category'] ) ) : ?>
<div id="post-<?php the_ID(); ?>" <?php post_class( 'category-gallery' ); ?>>
<h2 class="excerpt-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'coraline' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<div class="entry-meta">
<?php coraline_posted_on(); ?>
</div><!-- .entry-meta -->
<div class="entry-content">
<?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' );
?>
<div class="gallery-thumb">
<a class="size-thumbnail" href="<?php the_permalink(); ?>"><?php echo $image_img_tag; ?></a>
</div><!-- .gallery-thumb -->
<p><em><?php printf( __( 'This gallery contains <a %1$s>%2$s photos</a>.', 'coraline' ),
'href="' . get_permalink() . '" title="' . sprintf( esc_attr__( 'Permalink to %s', 'coraline' ), the_title_attribute( 'echo=0' ) ) . '" rel="bookmark"',
$total_images
); ?></em></p>
<?php endif; ?>
<?php the_excerpt(); ?>
<?php endif; ?>
</div><!-- .entry-content -->
<div class="entry-info">
<span class="comments-link"><?php comments_popup_link( __( '→ Leave a comment', 'coraline' ), __( '→ 1 Comment', 'coraline' ), __( '→ % Comments', 'coraline' ) ); ?></span>
<p><a href="<?php echo get_term_link( $options['gallery_category'], 'category' ); ?>" title="<?php esc_attr_e( 'View posts in the Gallery category', 'coraline' ); ?>"><?php _e( 'More Galleries', 'coraline' ); ?></a></p>
<p><?php edit_post_link( __( 'Edit', 'coraline' ), '', '' ); ?></p>
</div><!-- .entry-info -->
</div><!-- #post-## -->
<?php /* How to display posts in the asides category */ ?>
<?php elseif ( isset( $options['aside_category'] ) && '0' != $options['aside_category'] && in_category( $options['aside_category'] ) ) : ?>
<div id="post-<?php the_ID(); ?>" <?php post_class( 'category-asides' ); ?>>
<?php if ( is_archive() || is_search() ) : // Display excerpts for archives and search. ?>
<div class="entry-summary aside">
<?php the_excerpt(); ?>
</div><!-- .entry-summary -->
<?php else : ?>
<div class="entry-content aside">
<?php the_content( __( 'Read more <span class="meta-nav">→</span>', 'coraline' ) ); ?>
</div><!-- .entry-content -->
<?php endif; ?>
<div class="entry-info">
<p class="comments-link"><?php comments_popup_link( __( '→ Leave a comment', 'coraline' ), __( '→ 1 Comment', 'coraline' ), __( '→ % Comments', 'coraline' ) ); ?></p>
<p><?php coraline_posted_on(); ?></p>
<?php edit_post_link( __( 'Edit', 'coraline' ), '', '' ); ?>
</div><!-- .entry-info -->
</div><!-- #post-## -->
<?php /* How to display all other posts. */ ?>
<?php else : ?>
<?php $halfstyle = ($counter%2 == 0) ? 'left-half' : 'right-half'; $counter++; //EDIT: for two columns ?>
<div id="post-<?php the_ID(); ?>" <?php post_class($halfstyle); ?>>
<div class="featured-image"><a href="<?php the_permalink(); ?> " rel="bookmark"><?php the_post_thumbnail (); ?><class="attachment-post-thumbnail wp-post-image" /></a>
</div><!-- .featured-image -->
<h2 class="excerpt-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( '%s', 'coraline' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<?php if ( is_search() ) : // Display excerpts for search. ?>
<div class="entry-summary">
<?php the_excerpt(); ?>
</div><!-- .entry-summary -->
<?php else : ?>
<div class="excerpt">
<?php the_excerpt( __( 'Read more <span class="meta-nav">→</span>', 'coraline' ) ); ?>
<?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'coraline' ), 'after' => '</div>' ) ); ?>
</div><!-- .excerpt -->
<?php endif; ?>
</div><!-- #post-## -->
<?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 if(function_exists('wp_page_numbers')) : wp_page_numbers(); endif; ?>
Alles anzeigen
In der "Anleitung" des Plugins steht:
Add the code where you find previous_post() and next_post() functions. If you can't find these tags, place the code between endwhile; and endif; in the_loop.
Code to add in your theme <?php if(function_exists('wp_page_numbers')) : wp_page_numbers(); endif; ?>
Im Firebug sehe ich, dass sich die Navigation über ganzen Content erstreckt statt nur auf die Zeile, in der die Zahlen stehen. Ich möchte das ganze Ding gerne zentriert haben und hätte nicht gedacht dass das so ein problem ist...wer kann helfen??? :?: