Merhabalar, bir tema kullanmaya & test etmeye karar vermiştim. Temayi etkinleştirdikten sonra siteye giriş yaptığımda "Fatal error: Call to a member function excerpt() on a non-object in /home/xxx/public_html/wp-content/themes/DarkRed/index.php on line 17" şu hatayı aldım. Nedeni ne olabilir.
Index kodlari asagidaki gibidir.
< ?php get_header(); ?>
< div id="primary" class="twocol-stories">
<?php
// Here is the call to only make two posts show up on the homepage REGARDLESS of your options in the control panel
query_posts('showposts=2');
?>
< ?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<h3>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></h3>
<?= _('Published') ?> <?php the_time('F jS, Y') ?> in <?php the_category(', ') ?>. <?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?>.
<?php $hemingway->excerpt() ?>
<?php endwhile; ?>
< ?php else : ?>
<h2 class="center">Not Found</h2>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php include (TEMPLATEPATH . "/searchform.php"); ?>
<?php endif; ?>
<!-- [END] #primary -->
< ?php get_sidebar(); ?>
< ?php get_footer(); ?>
Destek sorusu değil