芝麻web文件管理V1.00
编辑当前文件:/home/ezdajrnh/public_html/wp-content/plugins/jetpack/extensions/blocks/videopress/videopress.php
is_active( 'videopress' ) && ! current_user_can( 'jetpack_activate_modules' ) ) { return; } Blocks::jetpack_register_block( BLOCK_NAME, array( 'render_callback' => __NAMESPACE__ . '\load_assets' ) ); } add_action( 'init', __NAMESPACE__ . '\register_block' ); /** * VideoPress block registration/dependency declaration. * * @param array $attrs Array containing the VideoPress block attributes. * @param string $content String containing the VideoPress block content. * * @return string */ function load_assets( $attrs, $content ) { // Do not render the block if the module is not active. if ( ! ( new Modules() )->is_active( 'videopress' ) ) { return ''; } Jetpack_Gutenberg::load_assets_as_required( FEATURE_FOLDER ); return $content; }