Fix escaping valid HTML

This commit is contained in:
Brian Miyaji
2021-11-18 00:45:50 +09:00
parent 3ffd38bd1e
commit 01e2ae2069
20 changed files with 3814 additions and 3838 deletions

View File

@@ -423,7 +423,7 @@ if ( ! class_exists( 'SportsPress_Officials' ) ) :
public function register_importer( $importers = array() ) {
$importers['sp_official_csv'] = array(
'name' => esc_attr__( 'SportsPress Officials (CSV)', 'sportspress' ),
'description' => esc_attr__( 'Import <strong>officials</strong> from a csv file.', 'sportspress' ),
'description' => wp_kses_post( __( 'Import <strong>officials</strong> from a csv file.', 'sportspress' ) ),
'callback' => array( $this, 'officials_importer' ),
);
return $importers;