????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 18.117.189.91 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/www.astacus.eu/wp-content/themes/Avada/includes/ |
Upload File : |
<?php // Do not allow directly accessing this file. if ( ! defined( 'ABSPATH' ) ) { exit( 'Direct script access denied.' ); } /** * The Avada_Blog class. * * @since 3.8 */ class Avada_Blog { /** * Constructor. * * @access public */ public function __construct() { add_filter( 'excerpt_length', array( $this, 'excerpt_length' ), 999 ); add_action( 'pre_get_posts', array( $this, 'alter_search_loop' ), 1 ); if ( ! is_admin() ) { add_filter( 'pre_get_posts', array( $this, 'search_filter' ) ); add_filter( 'pre_get_posts', array( $this, 'empty_search_filter' ) ); } } /** * Modify the default excerpt length. * * @param int $length The excerpt length. * @return int */ public function excerpt_length( $length ) { // Normal blog posts excerpt length. if ( ! is_null( Avada()->settings->get( 'excerpt_length_blog' ) ) ) { $length = Avada()->settings->get( 'excerpt_length_blog' ); } // Search results excerpt length. if ( is_search() ) { $length = Avada()->settings->get( 'excerpt_length_blog' ); } return $length; } /** * Apply post per page on search pages. * * @param object $query The WP_Query object. * @return void */ public function alter_search_loop( $query ) { if ( ! is_admin() && $query->is_main_query() && $query->is_search() && Avada()->settings->get( 'search_results_per_page' ) ) { $query->set( 'posts_per_page', Avada()->settings->get( 'search_results_per_page' ) ); } } /** * Apply filters to the search query. * Determines if we only want to display posts/pages and changes the query accordingly. * * @param object $query The WP_Query object. * @return object */ public function search_filter( $query ) { if ( is_search() && $query->is_search ) { // Show only posts in search results. if ( 'Only Posts' == Avada()->settings->get( 'search_content' ) ) { $query->set( 'post_type', 'post' ); } // Show only pages in search results. elseif ( 'Only Pages' == Avada()->settings->get( 'search_content' ) ) { $query->set( 'post_type', 'page' ); } } return $query; } /** * Make wordpress respect the search template on an empty search. * * @param object $query The WP_Query object. * @return object */ public function empty_search_filter( $query ) { if ( isset( $_GET['s'] ) && empty( $_GET['s'] ) && $query->is_main_query() ) { $query->is_search = true; $query->is_home = false; } return $query; } /** * Get the content of the post * strip it and apply any changes required to the excerpt first. * * @param int $excerpt_length The length of our excerpt. * @param string $content The content. */ public function get_content_stripped_and_excerpted( $excerpt_length, $content ) { $pattern = get_shortcode_regex(); $content = preg_replace_callback( "/$pattern/s", 'avada_extract_shortcode_contents', $content ); $content = explode( ' ', $content, $excerpt_length + 1 ); if ( $excerpt_length < count( $content ) ) { array_pop( $content ); } $content = implode( ' ',$content ); $content = preg_replace( '~(?:\[/?)[^/\]]+/?\]~s', '', $content ); // Strip shortcodes and keep the content. $content = str_replace( ']]>', ']]>', $content ); $content = strip_tags( $content ); $content = str_replace( array( '"', "'" ), array( '"', ''' ), $content ); $content = trim( $content ); return $content; } /** * Retrieve the content and apply and read-more modifications needed. * * @param int $limit The limit we've set for our content. * @param bool $strip_html If we want to strip HTML from our content. */ public function content( $limit, $strip_html ) { global $more; $content = ''; // Sanitizing the limit value. $limit = ( ! $limit && 0 != $limit ) ? 285 : intval( $limit ); $test_strip_html = ( 'true' == $strip_html || true == $strip_html ) ? true : false; $custom_excerpt = false; $post = get_post( get_the_ID() ); $pos = strpos( $post->post_content, '<!--more-->' ); $readmore = ( Avada()->settings->get( 'link_read_more' ) ) ? ' <a href="' . get_permalink( get_the_ID() ) . '">[...]</a>' : ' [...]'; $readmore = ( ! Avada()->settings->get( 'disable_excerpts' ) ) ? '' : $readmore; if ( $test_strip_html ) { $more = 0; $raw_content = wp_strip_all_tags( get_the_content( '{{read_more_placeholder}}' ), '<p>' ); // Strip out all attributes. $raw_content = preg_replace( '/<(\w+)[^>]*>/', '<$1>', $raw_content ); $raw_content = str_replace( '{{read_more_placeholder}}', $readmore, $raw_content ); if ( $post->post_excerpt || false !== $pos ) { $raw_content = ( ! $pos ) ? wp_strip_all_tags( rtrim( get_the_excerpt(), '[…]' ), '<p>' ) . $readmore : $raw_content; $custom_excerpt = true; } } else { $more = 0; $raw_content = get_the_content( $readmore ); if ( $post->post_excerpt || false !== $pos ) { $raw_content = ( ! $pos ) ? rtrim( get_the_excerpt(), '[…]' ) . $readmore : $raw_content; $custom_excerpt = true; } } if ( $raw_content && ! $custom_excerpt ) { $pattern = get_shortcode_regex(); $content = preg_replace_callback( "/$pattern/s", 'avada_extract_shortcode_contents', $raw_content ); if ( 'Characters' == Avada()->settings->get( 'excerpt_base' ) ) { $content = mb_substr( $content, 0, $limit ); $content .= ( 0 != $limit && Avada()->settings->get( 'disable_excerpts' ) ) ? $readmore : ''; } else { $content = explode( ' ', $content, $limit + 1 ); if ( $limit < count( $content ) ) { array_pop( $content ); $content = implode( ' ',$content ); if ( Avada()->settings->get( 'disable_excerpts' ) ) { $content .= ( 0 != $limit ) ? $readmore : ''; } } else { $content = implode( ' ',$content ); } } if ( 0 != $limit && ! $test_strip_html ) { $content = apply_filters( 'the_content', $content ); $content = str_replace( ']]>', ']]>', $content ); } else { $content = '<p>' . $content . '</p>'; } $strip_html_class = ( $test_strip_html ) ? 'strip-html' : ''; $content = '<div class="excerpt-container ' . $strip_html_class . '">' . do_shortcode( $content ) . '</div>'; return $content; } if ( true == $custom_excerpt ) { $pattern = get_shortcode_regex(); $content = preg_replace_callback( "/$pattern/s", 'avada_extract_shortcode_contents', $raw_content ); if ( true == $test_strip_html ) { $content = apply_filters( 'the_content', $content ); $content = str_replace( ']]>', ']]>', $content ); $content = '<div class="excerpt-container strip-html">' . do_shortcode( $content ) . '</div>'; } else { $content = apply_filters( 'the_content', $content ); $content = str_replace( ']]>', ']]>', $content ); } } if ( has_excerpt() ) { $content = do_shortcode( get_the_excerpt() ); $content = '<p>' . $content . '</p>'; } return $content; } } /* Omit closing PHP tag to avoid "Headers already sent" issues. */