| Server IP : 202.61.199.114 / Your IP : 216.73.217.139 Web Server : nginx/1.22.1 System : Linux de.arni-solutions.de 6.1.0-49-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64 User : web20 ( 1018) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/clients/client2/web10/web/wp-content/themes/standardtheme/ |
Upload File : |
<?php /** * Suchergebnis-Template. * * @package StandardTheme */ get_header(); ?> <header class="page-header"> <h1 class="page-title"> <?php /* translators: %s: Suchbegriff. */ printf( esc_html__( 'Suchergebnisse für: %s', 'standardtheme' ), '<span>' . esc_html( get_search_query() ) . '</span>' ); ?> </h1> <?php get_search_form(); ?> </header> <?php if ( have_posts() ) : ?> <?php while ( have_posts() ) : the_post(); ?> <article id="post-<?php the_ID(); ?>" <?php post_class( 'entry' ); ?>> <header class="entry-header"> <?php the_title( '<h2 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h2>' ); ?> <div class="entry-meta"><?php echo esc_html( get_the_date() ); ?></div> </header> <div class="entry-content"> <?php the_excerpt(); ?> <a class="read-more" href="<?php the_permalink(); ?>"><?php esc_html_e( 'Weiterlesen', 'standardtheme' ); ?> →</a> </div> </article> <?php endwhile; ?> <?php the_posts_pagination( array( 'mid_size' => 2, 'prev_text' => __( '← Zurück', 'standardtheme' ), 'next_text' => __( 'Weiter →', 'standardtheme' ), ) ); ?> <?php else : ?> <div class="no-results"> <p><?php esc_html_e( 'Keine Treffer. Bitte mit anderen Suchbegriffen versuchen.', 'standardtheme' ); ?></p> </div> <?php endif; ?> <?php get_footer();