Lines:
1 to 50 of 50
<?php /** * WPSEO plugin file. * * @package WPSEO\Internals */ if ( ! defined( 'WPSEO_VERSION' ) ) { header( 'Status: 403 Forbidden' ); header( 'HTTP/1.1 403 Forbidden' ); exit(); } if ( ! function_exists( 'yoast_breadcrumb' ) ) { /* function yoast_breadcrumb() – Template tag for breadcrumbs. */ } if ( ! function_exists( 'yoast_get_primary_term_id' ) ) { /* function yoast_get_primary_term_id() – Get the primary term ID. */ } if ( ! function_exists( 'yoast_get_primary_term' ) ) { /* function yoast_get_primary_term() – Get the primary term name. */ } /* function wpseo_replace_vars() – Replace `%%variable_placeholders%%` with their real value based on the current requested page/post/cpt. */ /* function wpseo_register_var_replacement() – Register a new variable replacement. */ /* function wpseo_wpml_config() – WPML plugin support: Set titles for custom types / taxonomies as translatable. */ add_filter( 'icl_wpml_config_array', 'wpseo_wpml_config' ); /* function wpseo_shortcode_yoast_breadcrumb() – Yoast SEO breadcrumb shortcode. */ if ( ! function_exists( 'ctype_digit' ) ) { /* function ctype_digit() – Emulate PHP native ctype_digit() function for when the ctype extension would be disabled *sigh*. */ } /* function wpseo_split_shared_term() – Makes sure the taxonomy meta is updated when a taxonomy term is split. */ add_action( 'split_shared_term', 'wpseo_split_shared_term', 10, 4 ); /* function wpseo_get_capabilities() – Get all WPSEO related capabilities. */ if ( ! function_exists( 'wp_get_environment_type' ) ) { /* function wp_get_environment_type() – Retrieves the current environment type. */ }