Submit
Path:
~
/
home
/
contenidosenred
/
www
/
OD
/
wp-content
/
plugins
/
masvideos
/
includes
/
admin
/
importers
/
mappings
/
File Content:
generic.php
<?php /** * Generic mappings * * @package MasVideos\Admin\Importers */ if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Add generic mappings. * * @since 3.1.0 * @param array $mappings Importer columns mappings. * @return array */ function masvideos_importer_generic_mappings( $mappings ) { $generic_mappings = array( __( 'Title', 'masvideos' ) => 'name', __( 'TV Show Title', 'masvideos' ) => 'name', __( 'Video Title', 'masvideos' ) => 'name', __( 'Movie Title', 'masvideos' ) => 'name', __( 'Menu order', 'masvideos' ) => 'menu_order', ); return array_merge( $mappings, $generic_mappings ); } add_filter( 'masvideos_csv_tv_show_import_mapping_default_columns', 'masvideos_importer_generic_mappings' ); add_filter( 'masvideos_csv_video_import_mapping_default_columns', 'masvideos_importer_generic_mappings' ); add_filter( 'masvideos_csv_movie_import_mapping_default_columns', 'masvideos_importer_generic_mappings' );
Edit
Rename
Chmod
Delete
FILE
FOLDER
INFO
Name
Size
Permission
Action
default.php
2919 bytes
0644
generic.php
963 bytes
0644
mappings.php
296 bytes
0644
wordpress.php
887 bytes
0644
N4ST4R_ID | Naxtarrr