thebohochica
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Expound] Need to add content slider on the homepageThanks for all your help.
I have figured it out now.Forum: Themes and Templates
In reply to: [Expound] Need to add content slider on the homepageThank you very much!
I have the slider exactly where I wanted it, but I just need to add a little bit of space between the slider and the Navigation menu just below the header image.
Could you please have a look at http://thebohochica.com/ and advise?Forum: Themes and Templates
In reply to: [Expound] Need to add content slider on the homepageThanks for the reply.
Where exactly in the file do I need to put this code? This is what it looks like right now.
Many thanks.
`<?php
/**
* @package Expound
*/
$featured_posts = expound_get_featured_posts();
?>
<?php if ( $featured_posts->have_posts() ) : $featured_posts->the_post(); ?>
<div class=”featured-content”><article id=”post-<?php the_ID(); ?>” <?php post_class(); ?>>
<?php if ( has_post_thumbnail() ) : ?>
<div class=”entry-thumbnail”>
“><?php the_post_thumbnail( ‘expound-featured’ ); ?>
</div>
<?php endif; ?><header class=”entry-header”>
<h1 class=”entry-title”>” title=”<?php echo esc_attr( sprintf( __( ‘Permalink to %s’, ‘expound’ ), the_title_attribute( ‘echo=0’ ) ) ); ?>” rel=”bookmark”><?php the_title(); ?></h1>
</header><!– .entry-header –><div class=”entry-summary”>
<?php the_excerpt(); ?>
<p>“><?php _e( ‘Continue reading →’, ‘expound’ ); ?></p>
</div><!– .entry-summary –><div class=”clear”></div>
</article>
</div><!– .featured-content –>
<?php if ( $featured_posts->have_posts() ) : // more than one? ?>
<div class=”featured-content-secondary”>
<?php while ( $featured_posts->have_posts() ) : $featured_posts->the_post(); ?><article id=”post-<?php the_ID(); ?>” <?php post_class(); ?>>
<?php if ( has_post_thumbnail() ) : ?>
<div class=”entry-thumbnail”>
“><?php the_post_thumbnail(); ?><?php if ( get_the_category() ) : ?>
<span class=”entry-thumbnail-category”><?php the_category( ‘ / ‘ ); ?></span>
<?php endif; // get_the_category() ?>
</div>
<?php endif; ?><header class=”entry-header”>
<h1 class=”entry-title”>” title=”<?php echo esc_attr( sprintf( __( ‘Permalink to %s’, ‘expound’ ), the_title_attribute( ‘echo=0’ ) ) ); ?>” rel=”bookmark”><?php the_title(); ?></h1>
</header><!– .entry-header –><div class=”entry-summary”>
<?php the_excerpt(); ?>
</div><!– .entry-summary –>
</article><?php if ( $featured_posts->current_post % 4 == 0 ) : ?>
<div class=”clear”></div>
<?php endif; // % 4 ?><?php endwhile; ?>
</div><!– .featured-content-secondary –>
<?php endif; // have_posts() inner ?>
<?php endif; // have_posts() ?>