Plugin isnt working
-
hey,
im totally new in WordPress. I want to use this nice Plugin by using the wolf-starter theme. This is my search.php
<?php
/**
* The template for displaying Search Results pages.
*
* @package wolf
*/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’, ‘wolf’ ), ‘<span>’ . get_search_query() . ‘</span>’ ); ?></h1></header><!– .page-header –>
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?><?php do_action(‘wolf_before_search-results’); ?>
<?php get_template_part( ‘content’, ‘search’ ); ?>
<?php do_action(‘wolf_after_search-results’); ?>
<?php endwhile; ?>
<?php if (function_exists(‘relevanssi_the_excerpt’)) { relevanssi_the_excerpt(); }; ?>
<?php else : ?>
<?php get_template_part( ‘no-results’, ‘search’ ); ?>
<?php endif; ?>
</div><!– #content –>
</section><!– #primary –><?php get_sidebar(); ?>
<?php get_footer(); ?>what do i have to do, to get this plugin running?
Thank you for your help
The topic ‘Plugin isnt working’ is closed to new replies.