Yoast\WP\SEO\Exceptions\Indexable
Post_Not_Built_Exception::because_post_type_excluded()
Throws an exception if the post type is excluded from indexing.
Метод класса: Post_Not_Built_Exception{}
Хуков нет.
Возвращает
Post_Not_Built_Exception
.
Использование
$result = Post_Not_Built_Exception::because_post_type_excluded( $post_id );
- $post_id(int) (обязательный)
- ID of the post.
Код Post_Not_Built_Exception::because_post_type_excluded() Post Not Built Exception::because post type excluded Yoast 24.7
public static function because_post_type_excluded( $post_id ) { /* translators: %s: expands to the post id */ return new self( \sprintf( \__( 'The post %s could not be indexed because it\'s post type is excluded from indexing.', 'wordpress-seo' ), $post_id ) ); }