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