芝麻web文件管理V1.00
编辑当前文件:/home/ezdajrnh/public_html/wp-content/plugins/wordpress-seo-premium/classes/multi-keyword.php
'hidden', 'title' => 'focuskeywords', ]; } return $field_defs; } /** * Add field in which we can save multiple keyword synonyms. * * @param array $field_defs The current fields definitions. * * @return array Field definitions with our added field. */ public function add_keyword_synonyms_input( $field_defs ) { if ( is_array( $field_defs ) ) { $field_defs['keywordsynonyms'] = [ 'type' => 'hidden', 'title' => 'keywordsynonyms', ]; } return $field_defs; } /** * Adds a field to the taxonomy metabox in which we can save multiple keywords. * * @param array $fields The current fields. * * @return array Fields including our added field. */ public function add_focus_keywords_taxonomy_input( $fields ) { if ( is_array( $fields ) ) { $fields['focuskeywords'] = [ 'label' => '', 'description' => '', 'type' => 'hidden', 'options' => '', ]; } return $fields; } /** * Adds a field in which we can save multiple keyword synonyms. * * @param array $fields The current fields. * * @return array Fields including our added field. */ public function add_keyword_synonyms_taxonomy_input( $fields ) { if ( is_array( $fields ) ) { $fields['keywordsynonyms'] = [ 'label' => '', 'description' => '', 'type' => 'hidden', 'options' => '', ]; } return $fields; } /** * Extends the taxonomy defaults. * * @param array $defaults The defaults to extend. * * @return array The extended defaults. */ public function register_taxonomy_metafields( $defaults ) { $defaults['wpseo_focuskeywords'] = ''; $defaults['wpseo_keywordsynonyms'] = ''; return $defaults; } }