PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins1
/
wordpress-seo-premium.13.4.1
/
premium
/
classes
<?php /** * WPSEO Premium plugin file. * * @package WPSEO\Premium */ /** * Represents the functionality for the prominent words support. */ class WPSEO_Premium_Prominent_Words_Support { /** * Returns an array with the supported post types. * * @return array The supported post types. */ public function get_supported_post_types() { /** * Filter: 'wpseo_prominent_words_post_types' - Allows changes for the accessible post types. * * @deprecated 12.9.0. Use the {@see 'Yoast\WP\SEO\prominent_words_post_types'} filter instead. * * @api array The accessible post types. */ $prominent_words_post_types = apply_filters_deprecated( 'wpseo_prominent_words_post_types', [ WPSEO_Post_Type::get_accessible_post_types() ], 'YoastSEO Premium 12.9.0', 'Yoast\WP\SEO\prominent_words_post_types' ); /** * Filter: 'Yoast\WP\SEO\prominent_words_post_types' - Allows changes for the accessible post types. * * Note: This is a Premium plugin-only hook. * * @since 12.9.0 * * @api array The accessible post types. */ $prominent_words_post_types = apply_filters( 'Yoast\WP\SEO\prominent_words_post_types', $prominent_words_post_types ); if ( ! is_array( $prominent_words_post_types ) || empty( $prominent_words_post_types ) ) { $prominent_words_post_types = []; } $prominent_words_post_types = WPSEO_Post_Type::filter_attachment_post_type( $prominent_words_post_types ); $prominent_words_post_types = array_filter( $prominent_words_post_types, [ 'WPSEO_Post_Type', 'has_metabox_enabled' ] ); return $prominent_words_post_types; } /** * Checks if the post type is supported. * * @param string $post_type The post type to look up. * * @return bool True when post type is supported. */ public function is_post_type_supported( $post_type ) { return in_array( $post_type, $this->get_supported_post_types(), true ); } }
[+]
..
[-] premium-prominent-words-link-endpoint.php
[edit]
[-] premium-prominent-words-recalculation.php
[edit]
[-] premium-orphaned-post-notifier.php
[edit]
[+]
redirect
[-] premium-prominent-words-support.php
[edit]
[-] premium-post-data-service.php
[edit]
[-] premium-assets.php
[edit]
[-] premium-redirect-service.php
[edit]
[-] facebook-profile.php
[edit]
[-] premium-prominent-words-link-service.php
[edit]
[-] .classes.php
[edit]
[-] premium-prominent-words-recalculation-notifier.php
[edit]
[-] premium-free-translations.php
[edit]
[-] premium-redirect-endpoint.php
[edit]
[-] premium-post-data-endpoint.php
[edit]
[-] premium-gsc.php
[edit]
[-] premium-prominent-words-language-support.php
[edit]
[-] premium-orphaned-content-support.php
[edit]
[-] premium-metabox.php
[edit]
[-] premium-link-suggestions-service.php
[edit]
[-] validation-error.php
[edit]
[-] premium-autoloader.php
[edit]
[-] social-previews.php
[edit]
[-] premium-prominent-words-versioning.php
[edit]
[+]
export
[-] multi-keyword.php
[edit]
[-] premium-link-suggestions-endpoint.php
[edit]
[-] premium-redirect-option.php
[edit]
[-] upgrade-manager.php
[edit]
[-] post-watcher.php
[edit]
[-] metabox-link-suggestions.php
[edit]
[-] premium-prominent-words-recalculation-endpoint.php
[edit]
[-] premium-expose-shortlinks.php
[edit]
[-] premium-asset-js-l10n.php
[edit]
[-] premium-import-manager.php
[edit]
[-] premium-prominent-words-endpoint.php
[edit]
[-] term-watcher.php
[edit]
[-] watcher.php
[edit]
[-] premium-prominent-words-registration.php
[edit]
[-] premium-orphaned-content-utils.php
[edit]
[-] premium-redirect-export-manager.php
[edit]
[-] premium-javascript-strings.php
[edit]
[-] validation-result.php
[edit]
[-] premium-register-capabilities.php
[edit]
[-] premium-stale-cornerstone-content-notification.php
[edit]
[-] product-premium.php
[edit]
[-] premium-keyword-export-manager.php
[edit]
[-] validation-warning.php
[edit]
[-] premium-stale-cornerstone-content-filter.php
[edit]
[-] premium-gsc-modal.php
[edit]
[-] premium-orphaned-post-query.php
[edit]
[-] premium-prominent-words-unindexed-post-query.php
[edit]
[-] premium-prominent-words-service.php
[edit]
[+]
views
[-] custom-fields-plugin.php
[edit]
[-] premium-orphaned-post-filter.php
[edit]
[-] premium-prominent-words-recalculation-service.php
[edit]