mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
122 lines
5.1 KiB
PHP
122 lines
5.1 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* Theme's Single Posts
|
||
|
*
|
||
|
*
|
||
|
* @file single.php
|
||
|
* @package WordPress
|
||
|
* @subpackage Shell
|
||
|
* @author Emil Uzelac, nofearinc
|
||
|
* @copyright 2003 - 2012 ThemeID, 2013 DevWP
|
||
|
* @license license.txt
|
||
|
* @version Release: 1.0
|
||
|
* @filesource wp-content/themes/shell-lite/single.php
|
||
|
* @link http://codex.wordpress.org/Theme_Development#Single_Post_.28single.php.29
|
||
|
* @since available since Release 1.0
|
||
|
*/
|
||
|
?>
|
||
|
<?php get_header(); ?>
|
||
|
|
||
|
<?php $options = get_option( 'shell_theme_options' ); ?>
|
||
|
|
||
|
<div id="content" class="grid col-620">
|
||
|
|
||
|
<?php if ( have_posts() ) : ?>
|
||
|
|
||
|
<?php while ( have_posts() ) : the_post(); ?>
|
||
|
|
||
|
<?php
|
||
|
if ( function_exists( 'shell_breadcrumb_lists' ) && empty( $options['breadcrumbs'] ) ) {
|
||
|
shell_breadcrumb_lists();
|
||
|
}
|
||
|
?>
|
||
|
|
||
|
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
||
|
<?php
|
||
|
$show_post_featured_image = !empty( $options['show_post_featured_image'] ) ? $options['show_post_featured_image'] : "";
|
||
|
if( has_post_thumbnail() && $show_post_featured_image == 1 ) {
|
||
|
echo the_post_thumbnail('full');
|
||
|
}
|
||
|
?>
|
||
|
<h1><?php the_title(); ?></h1>
|
||
|
|
||
|
<div class="post-meta">
|
||
|
<?php
|
||
|
printf( __( '<span class="%1$s">Posted on</span> %2$s by %3$s', 'shell' ),'meta-prep meta-prep-author',
|
||
|
sprintf( '<a href="%1$s" title="%2$s" rel="bookmark">%3$s</a>',
|
||
|
get_permalink(),
|
||
|
esc_attr( get_the_time() ),
|
||
|
get_the_date()
|
||
|
),
|
||
|
sprintf( '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s">%3$s</a></span>',
|
||
|
get_author_posts_url( get_the_author_meta( 'ID' ) ),
|
||
|
sprintf( esc_attr__( 'View all posts by %s', 'shell' ), get_the_author() ),
|
||
|
get_the_author()
|
||
|
)
|
||
|
);
|
||
|
?>
|
||
|
<?php if ( comments_open() ) : ?>
|
||
|
<span class="comments-link">
|
||
|
<span class="mdash">—</span>
|
||
|
<?php comments_popup_link( __( 'No Comments ↓', 'shell'), __( '1 Comment ↓', 'shell' ), __( '% Comments ↓', 'shell' ) ); ?>
|
||
|
</span>
|
||
|
<?php endif; ?>
|
||
|
</div><!-- end of .post-meta -->
|
||
|
|
||
|
<div class="post-entry">
|
||
|
<?php the_content( __( 'See more ›', 'shell' ) ); ?>
|
||
|
|
||
|
<?php
|
||
|
if ( empty( $options['author_bio'] ) ) {
|
||
|
if ( get_the_author_meta('description') != '' ) {
|
||
|
?>
|
||
|
<div id="author-meta">
|
||
|
<?php
|
||
|
if ( function_exists( 'get_avatar' ) ) {
|
||
|
echo get_avatar( get_the_author_meta( 'email' ), '80' );
|
||
|
}
|
||
|
?>
|
||
|
<div class="about-author"><?php _e( 'About ', 'shell' ); the_author_posts_link(); ?></div>
|
||
|
<p><?php the_author_meta( 'description' ) ?></p>
|
||
|
</div><!-- end of #author-meta -->
|
||
|
<?php
|
||
|
} // no description, no author's meta
|
||
|
} // end author meta
|
||
|
?>
|
||
|
|
||
|
<?php wp_link_pages( array( 'before' => '<div class="pagination">' . __( 'Pages:', 'shell' ), 'after' => '</div>' ) ); ?>
|
||
|
</div><!-- end of .post-entry -->
|
||
|
|
||
|
<div class="post-data">
|
||
|
<?php the_tags( __( 'Tagged with:', 'shell' ) . ' ', ', ', '<br />' ); ?>
|
||
|
<?php printf( __( 'Posted in %s', 'shell' ), get_the_category_list( ', ' ) ); ?>
|
||
|
</div><!-- end of .post-data -->
|
||
|
|
||
|
<div class="post-edit"><?php edit_post_link( __( 'Edit', 'shell' ) ); ?></div>
|
||
|
</div><!-- end of #post-<?php the_ID(); ?> -->
|
||
|
|
||
|
<?php comments_template( '', true ); ?>
|
||
|
|
||
|
<?php endwhile; ?>
|
||
|
|
||
|
<?php if ( $wp_query->max_num_pages > 1 ) : ?>
|
||
|
<div class="navigation">
|
||
|
<div class="previous"><?php next_posts_link( __( '‹ Older posts', 'shell' ) ); ?></div>
|
||
|
<div class="next"><?php previous_posts_link( __( 'Newer posts ›', 'shell' ) ); ?></div>
|
||
|
</div><!-- end of .navigation -->
|
||
|
<?php endif; ?>
|
||
|
|
||
|
<?php else : ?>
|
||
|
|
||
|
<h1 class="title-404"><?php _e( '404 — Fancy meeting you here!', 'shell' ); ?></h1>
|
||
|
<p><?php _e( 'Don\'t panic, we\'ll get through this together. Let\'s explore our options here.', 'shell' ); ?></p>
|
||
|
<h6><?php _e( 'You can return', 'shell' ); ?> <a href="<?php echo home_url(); ?>/" title="<?php esc_attr_e( 'home', 'shell' ); ?>"><?php _e( '⏎ Home', 'shell' ); ?></a> <?php _e( 'or search for the page you were looking for', 'shell' ); ?></h6>
|
||
|
<?php get_search_form(); ?>
|
||
|
|
||
|
<?php endif; ?>
|
||
|
|
||
|
</div><!-- end of #content -->
|
||
|
|
||
|
<?php get_sidebar(); ?>
|
||
|
<?php get_footer(); ?>
|