PATH:
home
/
letacommog
/
ldqm1
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
helpers
<?php namespace Yoast\WP\SEO\Helpers; use Yoast\WP\Lib\Model; /** * A helper object for author archives. */ class Author_Archive_Helper { /** * Gets the array of post types that are shown on an author's archive. * * @return array The post types that are shown on an author's archive. */ public function get_author_archive_post_types() { /** * Filters the array of post types that are shown on an author's archive. * * @param array $args The post types that are shown on an author archive. */ return \apply_filters( 'wpseo_author_archive_post_types', [ 'post' ] ); } /** * Returns whether the author has at least one public post. * * @param int $author_id The author ID. * * @return bool Whether the author has at least one public post. */ public function author_has_public_posts( $author_id ) { // First check if the author has at least one public post. $has_public_post = $this->author_has_a_public_post( $author_id ); if ( $has_public_post ) { return true; } // Then check if the author has at least one post where the status is the same as the global setting. $has_public_post_depending_on_the_global_setting = $this->author_has_a_post_with_is_public_null( $author_id ); if ( $has_public_post_depending_on_the_global_setting ) { return null; } return false; } /** * Returns whether the author has at least one public post. * * @param int $author_id The author ID. * * @codeCoverageIgnore It looks for the first ID through the ORM and converts it to a boolean. * * @return bool Whether the author has at least one public post. */ protected function author_has_a_public_post( $author_id ) { $cache_key = 'author_has_a_public_post_' . $author_id; $indexable_exists = \wp_cache_get( $cache_key ); if ( $indexable_exists === false ) { $indexable_exists = Model::of_type( 'Indexable' ) ->select( 'id' ) ->where( 'object_type', 'post' ) ->where_in( 'object_sub_type', $this->get_author_archive_post_types() ) ->where( 'author_id', $author_id ) ->where( 'is_public', 1 ) ->find_one(); if ( $indexable_exists === false ) { // Cache no results to prevent full table scanning on authors with no public posts. \wp_cache_set( $cache_key, 0, '', \wp_rand( ( 2 * \HOUR_IN_SECONDS ), ( 4 * \HOUR_IN_SECONDS ) ) ); } } return (bool) $indexable_exists; } /** * Returns whether the author has at least one post with the is public null. * * @param int $author_id The author ID. * * @codeCoverageIgnore It looks for the first ID through the ORM and converts it to a boolean. * * @return bool Whether the author has at least one post with the is public null. */ protected function author_has_a_post_with_is_public_null( $author_id ) { $cache_key = 'author_has_a_post_with_is_public_null_' . $author_id; $indexable_exists = \wp_cache_get( $cache_key ); if ( $indexable_exists === false ) { $indexable_exists = Model::of_type( 'Indexable' ) ->select( 'id' ) ->where( 'object_type', 'post' ) ->where_in( 'object_sub_type', $this->get_author_archive_post_types() ) ->where( 'author_id', $author_id ) ->where_null( 'is_public' ) ->find_one(); if ( $indexable_exists === false ) { // Cache no results to prevent full table scanning on authors with no is public null posts. \wp_cache_set( $cache_key, 0, '', \wp_rand( ( 2 * \HOUR_IN_SECONDS ), ( 4 * \HOUR_IN_SECONDS ) ) ); } } return (bool) $indexable_exists; } }
[+]
..
[-] pagination-helper.php
[edit]
[-] post-type-helper.php
[edit]
[-] options-helper.php
[edit]
[+]
open-graph
[-] environment-helper.php
[edit]
[-] image-helper.php
[edit]
[-] user-helper.php
[edit]
[-] notification-helper.php
[edit]
[-] string-helper.php
[edit]
[-] url-helper.php
[edit]
[-] author-archive-helper.php
[edit]
[-] capability-helper.php
[edit]
[-] taxonomy-helper.php
[edit]
[-] permalink-helper.php
[edit]
[-] indexing-helper.php
[edit]
[-] date-helper.php
[edit]
[+]
schema
[-] meta-helper.php
[edit]
[-] primary-term-helper.php
[edit]
[-] redirect-helper.php
[edit]
[-] blocks-helper.php
[edit]
[-] language-helper.php
[edit]
[-] current-page-helper.php
[edit]
[-] robots-helper.php
[edit]
[-] indexable-helper.php
[edit]
[-] home-url-helper.php
[edit]
[-] short-link-helper.php
[edit]
[+]
twitter
[-] site-helper.php
[edit]
[-] post-helper.php
[edit]
[-] product-helper.php
[edit]
[-] woocommerce-helper.php
[edit]