File "blog.php"
Full Path: /home2/sdektunc/cepali.edu.mx/wp-content/themes/edufication/inc/sections/blog.php
File size: 6.99 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Blog section
*
* This is the template for the content of blog section
*
* @package Theme Palace
* @subpackage Edufication
* @since Edufication 1.0.0
*/
if ( ! function_exists( 'edufication_add_blog_section' ) ) :
/**
* Add blog section
*
*@since Edufication 1.0.0
*/
function edufication_add_blog_section() {
$options = edufication_get_theme_options();
// Check if blog is enabled on frontpage
$blog_enable = apply_filters( 'edufication_section_status', true, 'blog_section_enable' );
if ( true !== $blog_enable ) {
return false;
}
// Get blog section details
$section_details = array();
$section_details = apply_filters( 'edufication_filter_blog_section_details', $section_details );
if ( empty( $section_details ) ) {
return;
}
// Render blog section now.
edufication_render_blog_section( $section_details );
}
endif;
if ( ! function_exists( 'edufication_get_blog_section_details' ) ) :
/**
* blog section details.
*
* @since Edufication 1.0.0
* @param array $input blog section details.
*/
function edufication_get_blog_section_details( $input ) {
$options = edufication_get_theme_options();
// Content type.
$blog_content_type = $options['blog_content_type'];
$content = array();
switch ( $blog_content_type ) {
case 'category':
$cat_id = ! empty( $options['blog_content_category'] ) ? $options['blog_content_category'] : '';
$args = array(
'post_type' => 'post',
'posts_per_page' => 3,
'cat' => absint( $cat_id ),
'ignore_sticky_posts' => true,
);
break;
case 'recent':
$cat_ids = ! empty( $options['blog_category_exclude'] ) ? $options['blog_category_exclude'] : array();
$args = array(
'post_type' => 'post',
'posts_per_page' => 3,
'category__not_in' => ( array ) $cat_ids,
'ignore_sticky_posts' => true,
);
break;
default:
break;
}
// Run The Loop.
$query = new WP_Query( $args );
if ( $query->have_posts() ) :
while ( $query->have_posts() ) : $query->the_post();
$page_post['id'] = get_the_id();
$page_post['author_id'] = get_the_author_meta( 'ID' );
$page_post['title'] = get_the_title();
$page_post['url'] = get_the_permalink();
$page_post['excerpt'] = edufication_trim_content( 15 );
$page_post['image'] = has_post_thumbnail() ? get_the_post_thumbnail_url( get_the_id(), 'post-thumbnail' ) : '';
// Push to the main array.
array_push( $content, $page_post );
endwhile;
endif;
wp_reset_postdata();
if ( ! empty( $content ) ) {
$input = $content;
}
return $input;
}
endif;
// blog section content details.
add_filter( 'edufication_filter_blog_section_details', 'edufication_get_blog_section_details' );
if ( ! function_exists( 'edufication_render_blog_section' ) ) :
/**
* Start blog section
*
* @return string blog content
* @since Edufication 1.0.0
*
*/
function edufication_render_blog_section( $content_details = array() ) {
$options = edufication_get_theme_options();
$btn_title = ! empty( $options['blog_btn_title'] ) ? $options['blog_btn_title'] : '';
$btn_url = ! empty( $options['blog_btn_url'] ) ? $options['blog_btn_url'] : '';
if ( empty( $content_details ) ) {
return;
} ?>
<div id="edufication_blog_section" class="relative page-section">
<div id="latest-posts">
<div class="wrapper">
<?php if ( is_customize_preview()):
edufication_section_tooltip( 'latest-posts' );
endif; ?>
<?php if ( ! empty( $options['blog_title'] ) ) : ?>
<div class="section-header text-center">
<h2 class="section-title separator"><?php echo esc_html( $options['blog_title'] ); ?></h2>
</div><!-- .section-header -->
<?php endif; ?>
<!-- supports col-1, col-2 and col-3 -->
<div class="section-content clear col-3">
<?php foreach ( $content_details as $content ) : ?>
<article>
<div class="blog-item-wrapper">
<?php if ( ! empty( $content['image'] ) ) : ?>
<div class="featured-image" style="background-image: url('<?php echo esc_url( $content['image'] ); ?>');">
<a href="<?php echo esc_url( $content['url'] ); ?>" class="featured-image-link"></a>
</div><!-- .featured-image -->
<?php endif; ?>
<div class="entry-container">
<div class="entry-meta">
<?php edufication_author( $content['author_id'] ); ?>
<?php edufication_posted_on( $content['id'] ); ?>
</div><!-- .entry-meta -->
<header class="entry-header">
<h2 class="entry-title"><a href="<?php echo esc_url( $content['url'] ); ?>"><?php echo esc_html( $content['title'] ); ?></a></h2>
</header>
<div class="entry-meta">
<?php edufication_article_footer_meta( $content['id'] ); ?>
</div><!-- .entry-meta -->
</div><!-- .entry-container -->
</div><!-- .blog-item-wrapper -->
</article>
<?php endforeach; ?>
</div><!-- .section-content -->
<?php if ( ! empty( $btn_title ) && ! empty($btn_url) ): ?>
<div class="more-link text-center">
<a href="<?php echo esc_url( $btn_url ); ?>" class="btn btn-default"><?php echo esc_html( $btn_title ); ?></a>
</div><!-- .more-link -->
<?php endif; ?>
</div><!-- .wrapper -->
</div><!-- #latest-posts -->
</div>
<?php }
endif;