C
carp88
Delta
Necesito sacar las fechas de las entradas. De las paginas necesito sacar los comentarios y los titulos.
El problema es que uso el theme suffusion que es medio raro..
El page.php:
single.php:
El problema es que uso el theme suffusion que es medio raro..
El page.php:
PHP:
<?php
/**
* Default template for a page
*
* @package Suffusion
* @subpackage Templates
*/
get_header();
?>
<div id="main-col">
<?php
suffusion_page_navigation();
?>
<?php suffusion_before_begin_content(); ?>
<div id="content">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div <?php post_class(); ?> id="post-<?php the_ID(); ?>">
<?php suffusion_after_begin_post(); ?>
<div class="entry fix">
<?php suffusion_content(); ?>
</div><!--/entry -->
<?php suffusion_before_end_post(); ?>
<?php comments_template(); ?>
</div><!--/post -->
<?php endwhile; endif; ?>
</div></div>
<?php get_footer(); ?>
single.php:
PHP:
<?php
/**
* Single book template for the Now Reading plugin.
*
* @package Suffusion
* @subpackage NowReading
*/
get_header();
global $nr_id, $suffusion_unified_options;
foreach ($suffusion_unified_options as $id => $value) {
$$id = $value;
}
?>
<div id="main-col">
<?php suffusion_before_begin_content(); ?>
<div id="content">
<?php suffusion_after_begin_content(); ?>
<div class="post fix nr-post">
<?php
if( have_books(intval($nr_id)) ) {
while ( have_books(intval($nr_id)) ) {
the_book();
?>
<h1 class="posttitle"><?php book_title(); ?></h1>
<div class="bookdata fix">
<div class="author">
<a href="<?php book_author_permalink() ?>"><?php book_author() ?></a>
</div>
<div class="rating">
Rating: <?php echo book_rating(false); ?>
<!-- <img src="<?php bloginfo('template_directory')?>/images/<?php book_rating() ?>.png" height="20px" title="Rating: <?php book_rating()?>" alt="Rating: <?php book_rating()?>" />-->
</div>
<?php
if( can_now_reading_admin() ) {
?>
<div class="edit">
<a href="<?php book_edit_url(); ?>">Edit this book</a>
</div>
<div class="manage">
<a href="<?php manage_library_url(); ?>"><?php _e('Manage Books', NRTD);?></a>
</div>
<?php
}
?>
</div>
<div class="bookentry fix">
<div class="stats">
<a href="<?php book_url(); ?>" title="<?php if (!is_custom_book()) { ?>Buy <?php echo esc_attr(book_title(false));?> from Amazon<?php }?>"><img src="<?php book_image(); ?>" alt="<?php echo esc_attr(book_title(false)); ?>" /></a>
<br/>
<p>
<?php
if ($suf_nr_single_added_show == 'show') {
echo $suf_nr_single_added_text;
echo book_added(false);
?>
</p>
<p>
<?php
}
if ($suf_nr_single_started_show == 'show') {
echo $suf_nr_single_started_text;
echo book_started(false);
?>
</p>
<p>
<?php
}
if ($suf_nr_single_finished_show == 'show') {
echo $suf_nr_single_finished_text;
echo book_finished(false);
?>
</p>
<p>
<?php
}
if ($suf_nr_single_meta_show == 'show') {
?>
<?php print_book_meta(0); ?>
<?php
}
?>
</p>
</div>
<div class="review">
<?php
book_review();
if(book_has_post()) {
?>
<p>This book is linked with the post <a href="<?php book_post_url() ?>">“<?php book_post_title() ?>”</a>.</p>
<?php
}
?>
</div><!--/.review -->
<?php
$tags = print_book_tags(false);
if (trim($tags) != "") {
?>
<div class="post-footer fix">
<span class="tags"><?php _e('Tagged with: ', 'suf_theme'); print_book_tags(1); ?></span>
</div><!--/.post-footer -->
<?php
}
?>
</div><!-- bookentry -->
<?php
}
}
else {
?>
<h2 class='posttitle'><?php _e("Not Found", "suf_theme"); ?></h2>
<div class='entry'>
<p><?php _e("Sorry, but you are looking for something that isn't here", "suf_theme"); ?></p>
</div>
<?php
}
//library_search_form();
?>
<!-- <p><a href="<?php library_url() ?>">← Back to library</a></p>-->
</div><!-- post -->
</div><!-- content -->
</div><!-- left-col -->
<?php
get_footer();
?>
Última edición: