Hi, ich habe dank der Tutorials von PSD eine Website erstellt und in WordPress eingebunden. Nun habe ich das Problem, dass die Suche zwar funktioniert, aber es werden alle Inhalte (die gefunden werden) in voler Länge aufgelistet, keine Trennung usw.
Ziel ist es, den Titel und einen Auszug aus dem Inhalt anzuzeigen (mit weiterlesen...) und durch einen <hr> zu trennen - wie muss ich vorgehen?
Im Prinzip so wie bei der Suche hier bei PSD
Danke für Tipps, Mint
Hier mal die Daten:
searchform.php
header.php
search.php
Ziel ist es, den Titel und einen Auszug aus dem Inhalt anzuzeigen (mit weiterlesen...) und durch einen <hr> zu trennen - wie muss ich vorgehen?
Im Prinzip so wie bei der Suche hier bei PSD
Danke für Tipps, Mint
Hier mal die Daten:
searchform.php
PHP:
<?php
/**
* The template for displaying search forms in reiswelt-theme
*
* @package WordPress
* @subpackage reisewelt-theme
* @reisewelt-theme 1.0 - 2013
*/
?>
<!-- ### SUCHE - reisewelt - 19062013 ### -->
<form method="get" id="searchform" action="<?php echo esc_url( home_url( '/' ) ); ?>">
<!-- <label for="s" class="assistive-text">Suche</label> -->
<input type="text" class="field" name="s" id="s" placeholder="Suche" />
<input type="submit" class="submit" name="submit" id="searchsubmit" value="Suche" />
</form>
PHP:
<div class="top_Suche">
<?php get_search_form(); ?>
</div>
PHP:
<?php
/**
* The template for displaying search forms in reiswelt-theme
*
* @package WordPress
* @subpackage reisewelt-theme
* @reisewelt-theme 1.0 - 2013
*/
get_header(); ?>
<section id="primary">
<div id="content" role="main">
<?php if ( have_posts() ) : ?>
<header class="page-header">
<h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'reisewelt-theme' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
</header>
<?php reisewelt-theme_content_nav( 'nav-above' ); ?>
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php
/* Include the Post-Format-specific template for the content.
* If you want to overload this in a child theme then include a file
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
*/
get_template_part( 'content', get_post_format() );
?>
<?php endwhile; ?>
<?php reisewelt-theme_content_nav( 'nav-below' ); ?>
<?php else : ?>
<article id="post-0" class="post no-results not-found">
<header class="entry-header">
<h1 class="entry-title"><?php _e( 'Nothing Found', 'reisewelt-theme' ); ?></h1>
</header><!-- .entry-header -->
<div class="entry-content">
<p><?php _e( 'Sorry, but nothing matched your search criteria. Please try again with some different keywords.', 'reisewelt-theme' ); ?></p>
<?php get_search_form(); ?>
</div><!-- .entry-content -->
</article><!-- #post-0 -->
<?php endif; ?>
</div><!-- #content -->
</section><!-- #primary -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Zuletzt bearbeitet: