mirror of
https://github.com/Rushilwiz/dear-anon.git
synced 2025-04-22 21:09:50 -04:00
56 lines
2.3 KiB
PHP
56 lines
2.3 KiB
PHP
<?php
|
|
/**
|
|
* The template used for displaying featured pages on the Front Page.
|
|
*
|
|
* @package Podcast
|
|
*/
|
|
|
|
$page_ids = array();
|
|
if ( absint(get_theme_mod( 'podcast-featured-page-1', false )) != 0 ) { $page_ids[] = absint(get_theme_mod( 'podcast-featured-page-1', false )); }
|
|
if ( absint(get_theme_mod( 'podcast-featured-page-2', false )) != 0 ) { $page_ids[] = absint(get_theme_mod( 'podcast-featured-page-2', false )); }
|
|
if ( absint(get_theme_mod( 'podcast-featured-page-3', false )) != 0 ) { $page_ids[] = absint(get_theme_mod( 'podcast-featured-page-3', false )); }
|
|
$page_count = 0;
|
|
$page_count = count($page_ids);
|
|
|
|
if ( $page_count > 0 ) {
|
|
$custom_loop = new WP_Query( array( 'post_type' => 'page', 'post__in' => $page_ids, 'orderby' => 'post__in' ) );
|
|
|
|
if ( $custom_loop->have_posts() ) : ?>
|
|
<div class="page-intro-featured-pages">
|
|
<div class="site-section-wrapper site-section-featured-pages-wrapper clearfix">
|
|
|
|
<div id="home-featured-pages">
|
|
|
|
<ul class="ilovewp-featured-pages-list clearfix">
|
|
|
|
<?php
|
|
while ( $custom_loop->have_posts() ) : $custom_loop->the_post();
|
|
$classes = array('site-archive-post','ilovewp-featured-page-item');
|
|
|
|
if ( !has_post_thumbnail() ) {
|
|
$classes[] = 'post-nothumbnail';
|
|
} else {
|
|
$classes[] = 'has-post-thumbnail';
|
|
}
|
|
?><li <?php post_class($classes); ?>>
|
|
<div class="site-column-widget-wrapper clearfix">
|
|
<?php if ( has_post_thumbnail() ) { ?>
|
|
<div class="entry-thumbnail">
|
|
<div class="entry-thumbnail-wrapper"><?php
|
|
|
|
echo '<a href="' . esc_url( get_permalink() ) . '" rel="bookmark">';
|
|
the_post_thumbnail('thumb-featured-page');
|
|
echo '</a>'; ?>
|
|
<h2 class="entry-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
|
|
</div><!-- .entry-thumbnail-wrapper -->
|
|
</div><!-- .entry-thumbnail --><?php } ?>
|
|
</div><!-- .site-column-widget-wrapper .clearfix -->
|
|
</li><!-- .site-archive-post --><?php endwhile; ?>
|
|
|
|
</ul><!-- .ilovewp-featured-pages-list .clearfix -->
|
|
|
|
</div><!-- #home-featured-pages -->
|
|
|
|
</div><!-- .site-section-wrapper .site-section-featured-pages-wrapper .clearfix -->
|
|
</div><!-- .page-intro-featured-pages -->
|
|
<?php endif; } ?>
|