GIF89a;
Priv8 Uploader By InMyMine7
Linux normalajans.net.tr 5.4.0-88-generic #99-Ubuntu SMP Thu Sep 23 17:29:00 UTC 2021 x86_64
<?php
/**
* Main file for assets generation.
*
* @package EditorPlus
*/
require_once EDPL_EDITORPLUS_PLUGIN_DIR . 'includes/utils.php';
add_action(
'init',
function () {
$post_types = get_post_types(
array(
'_builtin' => false,
),
'names',
'and'
);
$post_types['post'] = 'post';
foreach ( $post_types as $post_type ) :
add_post_type_support( $post_type, array( 'custom-fields' ) );
endforeach;
}
);