-
WIBUHAX0R1337
-
/
home
/
coludnqa
/
www
/
wp-content
/
plugins
/
wordpress-seo
/
inc
/
[ Home ]
Create Folder
Create File
Nama File / Folder
Size
Action
exceptions
--
NONE
options
--
NONE
sitemaps
--
NONE
.htaccess
0.231KB
Edit File
Delete File
Rename
class-my-yoast-api-request.php
4.775KB
Edit File
Delete File
Rename
class-post-type.php
2.767KB
Edit File
Delete File
Rename
class-wpseo-admin-bar-menu.php
19.016KB
Edit File
Delete File
Rename
class-wpseo-content-images.php
2.552KB
Edit File
Delete File
Rename
class-wpseo-custom-fields.php
1.45KB
Edit File
Delete File
Rename
class-wpseo-custom-taxonomies.php
1.59KB
Edit File
Delete File
Rename
class-wpseo-image-utils.php
13.652KB
Edit File
Delete File
Rename
class-wpseo-installation.php
1.092KB
Edit File
Delete File
Rename
class-wpseo-primary-term.php
1.63KB
Edit File
Delete File
Rename
class-wpseo-replace-vars.php
50.236KB
Edit File
Delete File
Rename
class-wpseo-replacement-variable.php
1.343KB
Edit File
Delete File
Rename
health-check-curl-version.php
4.477KB
Edit File
Delete File
Rename
health-check-links-table-not-accessible.php
2.258KB
Edit File
Delete File
Rename
health-check-page-comments.php
1.692KB
Edit File
Delete File
Rename
health-check-postname-permalink.php
1.733KB
Edit File
Delete File
Rename
interface-wpseo-wordpress-ajax-integration.php
0.287KB
Edit File
Delete File
Rename
interface-wpseo-wordpress-integration.php
0.34KB
Edit File
Delete File
Rename
wpseo-non-ajax-functions.php
1.556KB
Edit File
Delete File
Rename
<?php /** * WPSEO plugin file. * * @package WPSEO */ /** * WPSEO_Custom_Taxonomies. */ class WPSEO_Custom_Taxonomies { /** * Custom taxonomies cache. * * @var array */ protected static $custom_taxonomies = null; /** * Gets the names of the custom taxonomies, prepends 'ct_' and 'ct_desc', and returns them in an array. * * @return array The custom taxonomy prefixed names. */ public static function get_custom_taxonomies() { // Use cached value if available. if ( ! is_null( self::$custom_taxonomies ) ) { return self::$custom_taxonomies; } self::$custom_taxonomies = []; $args = [ 'public' => true, '_builtin' => false, ]; $custom_taxonomies = get_taxonomies( $args, 'names', 'and' ); if ( is_array( $custom_taxonomies ) ) { foreach ( $custom_taxonomies as $custom_taxonomy ) { array_push( self::$custom_taxonomies, self::add_custom_taxonomies_prefix( $custom_taxonomy ), self::add_custom_taxonomies_description_prefix( $custom_taxonomy ) ); } } return self::$custom_taxonomies; } /** * Adds the ct_ prefix to a taxonomy. * * @param string $taxonomy The taxonomy to prefix. * * @return string The prefixed taxonomy. */ private static function add_custom_taxonomies_prefix( $taxonomy ) { return 'ct_' . $taxonomy; } /** * Adds the ct_desc_ prefix to a taxonomy. * * @param string $taxonomy The taxonomy to prefix. * * @return string The prefixed taxonomy. */ private static function add_custom_taxonomies_description_prefix( $taxonomy ) { return 'ct_desc_' . $taxonomy; } }
Save!!!
© 2022 - 2023 WIBUHAXOR V1 By Lutfifakee || Padang Blackhat