File: D:/HostingSpaces/BOoms/pro-oils.be/wwwroot/wp-content/themes/neve/inc/views/partials/excerpt.php
<?php
/**
* Author: Andrei Baicus <andrei@themeisle.com>
* Created on: 28/08/2018
*
* @package Neve\Views\Partials
*/
namespace Neve\Views\Partials;
use Neve\Views\Base_View;
/**
* Class Excerpt
*
* @package Neve\Views\Partials
*/
class Excerpt extends Base_View {
/**
* Function that is run after instantiation.
*
* @return void
*/
public function init() {
add_action( 'neve_excerpt_archive', array( $this, 'render_post_excerpt' ), 10, 2 );
add_filter( 'neve_the_content', array( $this, 'maybe_load_otter_style' ) );
}
/**
* Load otter style if the plugin exist.
*/
public function maybe_load_otter_style( $content ) {
if ( ! class_exists( 'ThemeIsle\BlockCSS\Block_Frontend', false ) ) {
return $content;
}
global $post;
$pid = $post->ID;
$otter_instance = new \ThemeIsle\BlockCSS\Block_Frontend();
$otter_instance->enqueue_styles( $pid, true );
return $content;
}
/**
* Echo the post excerpt.
*
* @param string $context the provided context in do_action.
*/
public function render_post_excerpt( $context ) {
echo wp_kses_post( $this->get_post_excerpt( $context ) );
}
/**
* Get the post excerpt.
*
* @param string $context NOT YET USED. Might come in handily at some later point.
*
* @return string
*/
private function get_post_excerpt( $context ) {
$length = $this->get_excerpt_lenght();
$output = '';
$output .= '<div class="excerpt-wrap entry-summary">';
$output .= wp_kses_post( $this->get_excerpt( $length ) );
$output .= '</div>';
return $output;
}
/**
* Get the excerpt length.
*
* @param int $length post excerpt length.
*
* @return string
*/
private function get_excerpt( $length = 25 ) {
global $post;
if ( $length === 300 ) {
return apply_filters( 'neve_the_content', get_the_content() );
}
if ( strpos( $post->post_content, '<!--more-->' ) ) {
return apply_filters( 'neve_the_content', get_the_content() );
}
if ( has_excerpt() ) {
$content = get_the_excerpt();
return $content;
}
add_filter( 'excerpt_length', array( $this, 'change_excerpt_length' ), 10 );
$content = get_the_excerpt();
remove_filter( 'excerpt_length', array( $this, 'change_excerpt_length' ), 10 );
return $content;
}
/**
* Get the excerpt length option casted as `int`.
*
* @return int
*/
private function get_excerpt_lenght() {
return absint( round( get_theme_mod( 'neve_post_excerpt_length', 25 ) ) );
}
/**
* Change excerpt length.
*
* @return int
*/
public function change_excerpt_length() {
return $this->get_excerpt_lenght();
}
}