PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins1
/
wordpress-seo-premium.13.4.1
/
src
/
helpers
<?php /** * A helper object for author archives. * * @package Yoast\YoastSEO\Helpers */ namespace Yoast\WP\SEO\Helpers; /** * Class Author_Archive_Helper */ 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' ] ); } }
[+]
..
[-] author-archive-helper.php
[edit]
[-] .helpers.php
[edit]
[-] home-url-helper.php
[edit]