File: /home/mmickelson/martyknows.com/wp-content/themes/selecta/content-featured.php
<?php
/**
* The template for displaying content featured in the showcase.php page template
*
* @package WordPress
* @subpackage Selecta
*/
?>
<?php
// Access global variable directly to set content_width for the featured slider
if ( isset( $GLOBALS['content_width'] ) ) :
$GLOBALS['content_width'] = 640;
endif;
?>
<div class="featured-post-header">
<?php selecta_entry_date(); ?>
<h2 class="featured-entry-title"><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'selecta' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
</div><!-- .featured-post-header -->
<div class="featured-post-content">
<div class="entry">
<?php the_content(); ?>
<?php wp_link_pages( array( 'before' => '<div class="page-link"><span>' . __( 'Pages:', 'selecta' ) . '</span>', 'after' => '</div>' ) ); ?>
</div><!-- .entry -->
</div><!-- .featured-post-content -->
<?php
// Set $content_width back to the standard $content_width for this theme
if ( isset( $GLOBALS['content_width'] ) ) :
$GLOBALS['content_width'] = 540;
endif;
?>