wp_plugin_dependencies_slug, $slug
wp_plugin_dependencies_slug, $slug
Appears in: 7.0.3
Hook Type: filter
Displaying hooks found in version: 7.0.3apply_filters('wp_plugin_dependencies_slug, $slug') is found 1 times:
- /wp-includes/class-wp-plugin-dependencies.php line 594
* @since 6.5.0 * * @param string $slug The slug. */ $slug = apply_filters( 'wp_plugin_dependencies_slug', $slug ); // Match to WordPress.org slug format. if ( preg_match( '/^[a-z0-9]+(-[a-z0-9]+)*$/mu', $slug ) ) { $sanitized_slugs[] = $slug; } }