You appear to be a bot. Output may be restricted
Description
Generates a name for a primary taxonomy's hidden field.
Usage
$string = WPSEO_Primary_Term_Admin::generate_field_name( $taxonomy_name );
Parameters
- $taxonomy_name
- ( string ) required – The taxonomy's slug.
Returns
string The field id.
Source
File name: wordpress-seo/admin/class-primary-term-admin.php
Lines:
1 to 3 of 3
protected function generate_field_name( $taxonomy_name ) { return WPSEO_Meta::$form_prefix . 'primary_' . $taxonomy_name . '_term'; }