/home/fortodpl/thecutediva.com/wp-content/plugins/wordpress-seo/admin
NameSizeModeActions
ajax/-0755rm
capabilities/-0755rm
endpoints/-0755rm
exceptions/-0755rm
filters/-0755rm
formatter/-0755rm
google_search_console/-0755rm
import/-0755rm
listeners/-0755rm
menu/-0755rm
metabox/-0755rm
notifiers/-0755rm
pages/-0755rm
roles/-0755rm
services/-0755rm
statistics/-0755rm
taxonomy/-0755rm
tracking/-0755rm
views/-0755rm
watchers/-0755rm
admin-settings-changed-listener.php24450644editdlrm
ajax.php120250644editdlrm
class-admin-asset-analysis-worker-location.php18500644editdlrm
class-admin-asset-dev-server-location.php16440644editdlrm
class-admin-asset-location.php4880644editdlrm
class-admin-asset-manager.php214560644editdlrm
class-admin-asset-seo-location.php21260644editdlrm
class-admin-editor-specific-replace-vars.php64990644editdlrm
class-admin-gutenberg-compatibility-notification.php26120644editdlrm
class-admin-help-panel.php27620644editdlrm
class-admin-init.php109740644editdlrm
class-admin-recommended-replace-vars.php61280644editdlrm
class-admin-user-profile.php31310644editdlrm
class-admin-utils.php22010644editdlrm
class-admin.php130360644editdlrm
class-asset.php44050644editdlrm
class-bulk-description-editor-list-table.php21960644editdlrm
class-bulk-editor-list-table.php302420644editdlrm
class-bulk-title-editor-list-table.php23820644editdlrm
class-collector.php10050644editdlrm
class-config.php49470644editdlrm
class-database-proxy.php76880644editdlrm
class-export.php35450644editdlrm
class-expose-shortlinks.php72550644editdlrm
class-gutenberg-compatibility.php25290644editdlrm
class-meta-columns.php279590644editdlrm
class-my-yoast-proxy.php62870644editdlrm
class-option-tab.php22680644editdlrm
class-option-tabs-formatter.php29060644editdlrm
class-option-tabs.php23110644editdlrm
class-paper-presenter.php36000644editdlrm
class-plugin-availability.php103060644editdlrm
class-plugin-conflict.php41410644editdlrm
class-premium-popup.php28750644editdlrm
class-premium-upsell-admin-block.php80200644editdlrm
class-primary-term-admin.php74940644editdlrm
class-product-upsell-notice.php58920644editdlrm
class-remote-request.php32030644editdlrm
class-schema-person-upgrade-notification.php22860644editdlrm
class-suggested-plugins.php44320644editdlrm
class-wincher-dashboard-widget.php36160644editdlrm
class-yoast-columns.php36060644editdlrm
class-yoast-dashboard-widget.php40220644editdlrm
class-yoast-form.php365840644editdlrm
class-yoast-input-validation.php73780644editdlrm
class-yoast-network-admin.php102110644editdlrm
class-yoast-network-settings-api.php42420644editdlrm
class-yoast-notification-center.php266480644editdlrm
class-yoast-notification.php103400644editdlrm
class-yoast-notifications.php78130644editdlrm
class-yoast-plugin-conflict.php105350644editdlrm
index.php380644editdlrm
interface-collection.php2570644editdlrm
interface-installable.php2540644editdlrm
Edit: /home/fortodpl/thecutediva.com/wp-content/plugins/wordpress-seo/admin/class-yoast-columns.php (3606B)
display_links(); $meta_columns_present = $this->display_meta_columns(); if ( ! ( $link_columns_present || $meta_columns_present ) ) { return; } $help_tab_content = sprintf( /* translators: %1$s: Yoast SEO */ __( '%1$s adds several columns to this page.', 'wordpress-seo' ), 'Yoast SEO', ); if ( $meta_columns_present ) { $help_tab_content .= ' ' . sprintf( /* translators: %1$s: Link to article about content analysis, %2$s: Anchor closing */ __( 'We\'ve written an article about %1$show to use the SEO score and Readability score%2$s.', 'wordpress-seo' ), '', '', ); } if ( $link_columns_present ) { $help_tab_content .= ' ' . sprintf( /* translators: %1$s: Link to article about text links, %2$s: Anchor closing tag, %3$s: Emphasis open tag, %4$s: Emphasis close tag */ __( 'The links columns show the number of articles on this site linking %3$sto%4$s this article and the number of URLs linked %3$sfrom%4$s this article. Learn more about %1$show to use these features to improve your internal linking%2$s, which greatly enhances your SEO.', 'wordpress-seo' ), '', '', '', '', ); } $screen = get_current_screen(); $screen->add_help_tab( [ /* translators: %s expands to Yoast */ 'title' => sprintf( __( '%s Columns', 'wordpress-seo' ), 'Yoast' ), 'id' => 'yst-columns', 'content' => '

' . $help_tab_content . '

', 'priority' => 15, ], ); } /** * Retrieves the post type from the $_GET variable. * * @return string The current post type. */ private function get_current_post_type() { // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- Reason: We are not processing form information. if ( isset( $_GET['post_type'] ) && is_string( $_GET['post_type'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- Reason: We are not processing form information. return sanitize_text_field( wp_unslash( $_GET['post_type'] ) ); } return ''; } /** * Whether we are showing link columns on this overview page. * This depends on the post being accessible or not. * * @return bool Whether the linking columns are shown */ private function display_links() { $current_post_type = $this->get_current_post_type(); if ( empty( $current_post_type ) ) { return false; } return WPSEO_Post_Type::is_post_type_accessible( $current_post_type ); } /** * Wraps the WPSEO_Metabox check to determine whether the metabox should be displayed either by * choice of the admin or because the post type is not a public post type. * * @return bool Whether the meta box (and associated columns etc) should be hidden. */ private function display_meta_columns() { $current_post_type = $this->get_current_post_type(); if ( empty( $current_post_type ) ) { return false; } return WPSEO_Utils::is_metabox_active( $current_post_type, 'post_type' ); } }