Wo code einbinden? search123

saschag60

Aktives Mitglied
Guten Tag ich möchte bei einen meher Blogs mal Search123 einbinden hab das WP Plugin installiert weis aber etz net genau wo ich den Code Einfügen soll.

QUOTE <?php get_header(); ?>
<?php $options = get_option('inove_options'); ?>

<?php if (have_posts()) : the_post(); update_post_caches($posts); ?>

<div id="postpath">
<a title="<?php _e('Go to homepage', 'inove'); ?>" href="<?php echo get_settings('home'); ?>/"><?php _e('Home', 'inove'); ?></a>
> <?php the_category(', '); ?>
> <?php the_title(); ?>
</div>

<div class="post" id="post-<?php the_ID(); ?>">
<h2><?php the_title(); ?></h2>
<div class="info">
<span class="date"><?php the_time(__('F jS, Y', 'inove')) ?></span>
<?php if ($options['author']) : ?><span class="author"><?php the_author_posts_link(); ?></span><?php endif; ?>
<?php edit_post_link(__('Edit', 'inove'), '<span class="editpost">', '</span>'); ?>
<?php if ($comments || comments_open()) : ?>
<span class="addcomment"><a href="#respond"><?php _e('Leave a comment', 'inove'); ?></a></span>
<span class="comments"><a href="#comments"><?php _e('Go to comments', 'inove'); ?></a></span>
<?php endif; ?>
<div class="fixed"></div>
</div>

Hier im Artikel sollte die Anzeige stehen wo muss ich diesen Code einfügen ?
<?php if (function_exists('searchFeed_searchpage')) { searchFeed_searchpage();} ?> in die Templates kopieren, in denen die Anzeigen erscheinen sollen. Die Funktion searchFeed_searchpage();

Evtl könnte es mir ja wer genau sagen ich komm irgendwie damit nicht klar hab auch keine eigene Php Erfahrung grüße
 
Ich würds einfach mal so versuchen:

QUOTE
<?php get_header(); ?>
<?php $options = get_option('inove_options'); ?>

<?php if (have_posts()) : the_post(); update_post_caches($posts); ?>

<div id="postpath">
<a title="<?php _e('Go to homepage', 'inove'); ?>" href="<?php echo get_settings('home'); ?>/"><?php _e('Home', 'inove'); ?></a>
> <?php the_category(', '); ?>
> <?php the_title(); ?>
</div>

<div class="post" id="post-<?php the_ID(); ?>">
<h2><?php the_title(); ?></h2>
<div class="info">
<span class="date"><?php the_time(__('F jS, Y', 'inove')) ?></span>
<?php if ($options['author']) : ?><span class="author"><?php the_author_posts_link(); ?></span><?php endif; ?>
<?php if (function_exists('searchFeed_searchpage')) { searchFeed_searchpage();} ?>
<?php edit_post_link(__('Edit', 'inove'), '<span class="editpost">', '</span>'); ?>
<?php if ($comments || comments_open()) : ?>
<span class="addcomment"><a href="#respond"><?php _e('Leave a comment', 'inove'); ?></a></span>
<span class="comments"><a href="#comments"><?php _e('Go to comments', 'inove'); ?></a></span>
<?php endif; ?>
<div class="fixed"></div>
</div>

 
Zurück
Oben