Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- // Exit if accessed directly
- if ( !defined('ABSPATH')) exit;
- /**
- * Full Content Template
- *
- Template Name: Article--no subtitle
- *
- * @file article-no-subtitle-page.php
- * @package Responsive
- * @author Emil Uzelac
- * @copyright 2003 - 2011 ThemeID
- * @license license.txt
- * @version Release: 1.0
- * @filesource wp-content/themes/responsive/full-width-page.php
- * @link http://codex.wordpress.org/Theme_Development#Pages_.28page.php.29
- * @since available since Release 1.0
- */
- ?>
- <?php get_header(); ?>
- <div id="content-full" class="grid col-940">
- <?php if (have_posts()) : ?>
- <?php while (have_posts()) : the_post(); ?>
- <?php $options = get_option('responsive_theme_options'); ?>
- <?php if ($options['breadcrumb'] == 0): ?>
- <?php echo responsive_breadcrumb_lists(); ?>
- <?php endif; ?>
- <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
- <h1 class="post-title"><font color="B40431"><?php the_title(); ?></font></h1>
- <h4><?php the_terms( $post->ID, 'fe_author', 'by ', ', ', ' ' ); ?></h4>
- <h4>Fifth Estate #<?php if($post->post_parent) {
- $parent = $wpdb->get_row("SELECT post_title FROM $wpdb->posts WHERE ID = $post->post_parent");
- $parent_link = get_permalink($post->post_parent); ?>
- <a href="<?php echo $parent_link; ?>"><?php echo $parent->post_title; ?></a>
- <?php } ?></h4>
- <?php if ( comments_open() ) : ?>
- <div class="post-meta">
- <?php responsive_post_meta_data(); ?>
- <?php if ( comments_open() ) : ?>
- <span class="comments-link">
- <span class="mdash">—</span>
- <?php comments_popup_link(__('No Comments ↓', 'responsive'), __('1 Comment ↓', 'responsive'), __('% Comments ↓', 'responsive')); ?>
- </span>
- <?php endif; ?>
- </div><!-- end of .post-meta -->
- <?php endif; ?>
- <div class="post-entry">
- <?php the_content(__('Read more ›', 'responsive')); ?>
- <?php wp_link_pages(array('before' => '<div class="pagination">' . __('Pages:', 'responsive'), 'after' => '</div>')); ?>
- </div><!-- end of .post-entry -->
- <?php if ( comments_open() ) : ?>
- <div class="post-data">
- <?php the_tags(__('Tagged with:', 'responsive') . ' ', ', ', '<br />'); ?>
- <?php the_category(__('Posted in %s', 'responsive') . ', '); ?>
- </div><!-- end of .post-data -->
- <?php endif; ?>
- <div class="post-edit"><?php edit_post_link(__('Edit', 'responsive')); ?></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', 'responsive' ) ); ?></div>
- <div class="next"><?php previous_posts_link( __( 'Newer posts ›', 'responsive' ) ); ?></div> </div><!-- end of .navigation -->
- <?php endif; ?>
- <?php else : ?>
- <h1 class="title-404"><?php _e('404 — Fancy meeting you here!', 'responsive'); ?></h1>
- <p><?php _e('Don't panic, we'll get through this together. Let's explore our options here.', 'responsive'); ?></p>
- <h6><?php printf( __('You can return %s or search for the page you were looking for.', 'responsive'),
- sprintf( '<a href="%1$s" title="%2$s">%3$s</a>',
- esc_url( get_home_url() ),
- esc_attr__('Home', 'responsive'),
- esc_attr__('← Home', 'responsive')
- ));
- ?></h6>
- <?php get_search_form(); ?>
- <?php endif; ?>
- </div><!-- end of #content-full -->
- <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement