E
Ealexander19
Hola como estan bueno ya instale el plugin en mi blog y tambien edite el archivo single.php de mi template, bueno me quedaria asi:
al momento de escribir una nueva entrada deberia de aparecerme compártelo y las imagenes pero no sale naa de eso, quisiera que me digan si cometi algun error en el codigo muchas gracias
Saludos
Insertar CODE, HTML o PHP:
<?php get_header(); ?>
<!-- container start -->
<div id="container">
<?php get_sidebar(); ?>
<!-- content start -->
<div id="content">
<?php if(have_posts()) : ?>
<?php while(have_posts()) : the_post(); ?>
<div class="post">
<h2><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
<p class="postmetadata">Posted in <?php the_category(', ') ?> | <?php the_time('F jS, Y') ?></p>
<div class="entry quotable">
<?php the_content(); ?>
<div class="endline"></div>
<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
<?php the_tags('<p class="tags"><strong>Tags:</strong> ', ', ', '</p>'); ?>
<?php bookmarks (); ?>
</div>
<?php
if (function_exists('wp_list_comments')) {
comments_template('/comments.php', true);
}
else {
comments_template('/comments-old.php');
}
?>
</div>
<?php endwhile; ?>
<div class="endline"></div>
<div class="quickjump">
<div class="postjumper"><?php goto_previous_post('%link') ?></div>
<div class="postjumper"><?php goto_next_post('%link') ?></div>
</div>
<?php else : ?>
<div class="notfound"><p>Post Not Found!</p><p>Please try again.</p></div>
<div class="endline"></div>
<?php endif; ?>
</div>
<!-- content end -->
<div class="endline"></div>
</div>
<!-- container end -->
<!-- footer start -->
<div id="footer">
<p><a href="http://www.ezwpthemes.com/">WordPress Themes</a> designed and coded by <a href="http://www.ezwpthemes.com/">EZwpthemes</a></p>
</div>
<!-- footer end -->
</div>
<!-- wrapper end -->
<?php wp_footer(); ?>
<script class="javascript" src="<?php bloginfo('stylesheet_directory'); ?>/jquery.min.js"></script>
<script class="javascript" src="<?php bloginfo('stylesheet_directory'); ?>/scrollto.js"></script>
<script class="javascript" src="<?php bloginfo('stylesheet_directory'); ?>/quotable.js"></script>
</body>
</html>
Saludos