Notice: include(): read of 5447 bytes failed with errno=14 Bad address in /home/cp42797/public_html/wp-content/plugins/sitepress-multilingual-cms/vendor/composer/ClassLoader.php on line 444

Notice: include(): read of 5447 bytes failed with errno=14 Bad address in /home/cp42797/public_html/wp-content/plugins/sitepress-multilingual-cms/vendor/composer/ClassLoader.php on line 444
hing you throw into this!! $filters[ $post_type ] = [ /** * Filter JOIN query part for the post type. * * @param string $join SQL part, defaults to false. * @param string $post_type Post type name. */ 'join' => apply_filters( 'wpseo_posts_join', false, $post_type ), /** * Filter WHERE query part for the post type. * * @param string $where SQL part, defaults to false. * @param string $post_type Post type name. */ 'where' => apply_filters( 'wpseo_posts_where', false, $post_type ), ]; } $join_filter = $filters[ $post_type ]['join']; $where_filter = $filters[ $post_type ]['where']; $where = $this->get_sql_where_clause( $post_type ); /* * Optimized query per this thread: * {@link http://wordpress.org/support/topic/plugin-wordpress-seo-by-yoast-performance-suggestion}. * Also see {@link http://explainextended.com/2009/10/23/mysql-order-by-limit-performance-late-row-lookups/}. */ $sql = " SELECT l.ID, post_title, post_content, post_name, post_parent, post_author, post_status, post_modified_gmt, post_date, post_date_gmt FROM ( SELECT {$wpdb->posts}.ID FROM {$wpdb->posts} {$join_filter} {$where} {$where_filter} ORDER BY {$wpdb->posts}.post_modified ASC LIMIT %d OFFSET %d ) o JOIN {$wpdb->posts} l ON l.ID = o.ID "; $posts = $wpdb->get_results( $wpdb->prepare( $sql, $count, $offset ) ); $post_ids = []; foreach ( $posts as $post_index => $post ) { $post->post_type = $post_type; $sanitized_post = sanitize_post( $post, 'raw' ); $posts[ $post_index ] = new WP_Post( $sanitized_post ); $post_ids[] = $sanitized_post->ID; } update_meta_cache( 'post', $post_ids ); return $posts; } /** * Constructs an SQL where clause for a given post type. * * @param string $post_type Post type slug. * * @return string */ protected function get_sql_where_clause( $post_type ) { global $wpdb; $join = ''; $post_statuses = array_map( 'esc_sql', WPSEO_Sitemaps::get_post_statuses( $post_type ) ); $status_where = "{$wpdb->posts}.post_status IN ('" . implode( "','", $post_statuses ) . "')"; // Based on WP_Query->get_posts(). R. if ( $post_type === 'attachment' ) { $join = " LEFT JOIN {$wpdb->posts} AS p2 ON ({$wpdb->posts}.post_parent = p2.ID) "; $parent_statuses = array_diff( $post_statuses, [ 'inherit' ] ); $status_where = "p2.post_status IN ('" . implode( "','", $parent_statuses ) . "') AND p2.post_password = ''"; } $where_clause = " {$join} WHERE {$status_where} AND {$wpdb->posts}.post_type = %s AND {$wpdb->posts}.post_password = '' AND {$wpdb->posts}.post_date != '0000-00-00 00:00:00' "; return $wpdb->prepare( $where_clause, $post_type ); } /** * Produce array of URL parts for given post object. * * @param object $post Post object to get URL parts for. * * @return array|bool */ protected function get_url( $post ) { $url = []; /** * Filter the URL Yoast SEO uses in the XML sitemap. * * Note that only absolute local URLs are allowed as the check after this removes external URLs. * * @param string $url URL to use in the XML sitemap * @param object $post Post object for the URL. */ $url['loc'] = apply_filters( 'wpseo_xml_sitemap_post_url', get_permalink( $post ), $post ); $link_type = YoastSEO()->helpers->url->get_link_type( wp_parse_url( $url['loc'] ), $this->get_parsed_home_url() ); /* * Do not include external URLs. * * {@link https://wordpress.org/plugins/page-links-to/} can rewrite permalinks to external URLs. */ if ( $link_type === SEO_Links::TYPE_EXTERNAL ) { return false; } $modified = max( $post->post_modified_gmt, $post->post_date_gmt ); if ( $modified !== '0000-00-00 00:00:00' ) { $url['mod'] = $modified; } $url['chf'] = 'daily'; // Deprecated, kept for backwards data compat. R. $canonical = WPSEO_Meta::get_value( 'canonical', $post->ID ); if ( $canonical !== '' && $canonical !== $url['loc'] ) { /* * Let's assume that if a canonical is set for this page and it's different from * the URL of this post, that page is either already in the XML sitemap OR is on * an external site, either way, we shouldn't include it here. */ return false; } unset( $canonical ); $url['pri'] = 1; // Deprecated, kept for backwards data compat. R. if ( $this->include_images ) { $url['images'] = $this->get_image_parser()->get_images( $post ); } return $url; } /* ********************* DEPRECATED METHODS ********************* */ /** * Get Home URL. * * @deprecated 11.5 * @codeCoverageIgnore * * @return string */ protected function get_home_url() { _deprecated_function( __METHOD__, 'WPSEO 11.5', 'WPSEO_Utils::home_url' ); return YoastSEO()->helpers->url->home(); } /** * Get front page ID. * * @deprecated 11.5 * @codeCoverageIgnore * * @return int */ protected function get_page_on_front_id() { _deprecated_function( __METHOD__, 'WPSEO 11.5' ); return (int) get_option( 'page_on_front' ); } /** * Get page for posts ID. * * @deprecated 11.5 * @codeCoverageIgnore * * @return int */ protected function get_page_for_posts_id() { _deprecated_function( __METHOD__, 'WPSEO 11.5' ); return (int) get_option( 'page_for_posts' ); } }
Fatal error: Uncaught Error: Class 'WPSEO_Post_Type_Sitemap_Provider' not found in /home/cp42797/public_html/wp-content/plugins/wordpress-seo/inc/sitemaps/class-sitemaps.php:122 Stack trace: #0 /home/cp42797/public_html/wp-includes/class-wp-hook.php(287): WPSEO_Sitemaps->init_sitemaps_providers('') #1 /home/cp42797/public_html/wp-includes/class-wp-hook.php(311): WP_Hook->apply_filters(NULL, Array) #2 /home/cp42797/public_html/wp-includes/plugin.php(478): WP_Hook->do_action(Array) #3 /home/cp42797/public_html/wp-settings.php(524): do_action('after_setup_the...') #4 /home/cp42797/public_html/wp-config.php(174): require_once('/home/cp42797/p...') #5 /home/cp42797/public_html/wp-load.php(37): require_once('/home/cp42797/p...') #6 /home/cp42797/public_html/wp-blog-header.php(13): require_once('/home/cp42797/p...') #7 /home/cp42797/public_html/index.php(17): require('/home/cp42797/p...') #8 {main} thrown in /home/cp42797/public_html/wp-content/plugins/wordpress-seo/inc/sitemaps/class-sitemaps.php on line 122