亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

??
1. register_block_type ???? ?? ??? ???? ??????
2. functions.php ?? ????? ???? ? ??? ??? ??????
3. ?? ?? ????? ?? ??
4. ??? ?? ?????????? ?
? CMS ???? Word??? Gutenberg ??? ??? ???? ??

Gutenberg ??? ??? ???? ??

Jul 09, 2025 am 12:14 AM
assets

Gutenberg ??? ??? ?? ??? ???? ??? ???? ??? ?????. 1. rething_script, editor_style ? style? ??? ????? register_block_type? ??????. 2. functions.php ?? ????? wp_register_script ? wp_register_style? ?? ???? ???? ??? ??? ? ??? ??????. 3. ??? ?? ??? ????? ?? ??? ???? ??? ???? ?????. 4. add_theme_support ?? enqueue_block_assets? ?? ??? ?? ????????? ???? ???? ???? ??? ?????.

Gutenberg ??? ??? ?? ?? (? : JavaScript ? CSS ??)? ???? ??? ??? ????? ???? ?? ?????. ?? ??? ??? ???????? ??? ??? ??? ?? ????? ? ??? ?? ??? ?????.


1. register_block_type ???? ?? ??? ???? ??????

WordPress? register_block_type ??? ???? ?? ??? ???? ?? ??? ?? ?? JS ? CSS ?? ??? ??? ? ????.

 register_block_type (__dir__, ?? (
    'editor_script'=> 'my-block-editor-script',
    'editor_style'=> 'my-block-editor-styles',
    '???'=> '? ??-??? ???',
));
  • editor_script : ?? ???? ????? ?? (????? .js ?? .jsx ??)
  • editor_style : ?????? ? ??? ? ??? ??? ??? ????.
  • style : ?? ? ?????? ? ???, ????? ??? ?? ??? ?????.

2. functions.php ?? ????? ???? ? ??? ??? ??????

WordPress? register_block_type ?? ?? ? ??? ?? ? ? ??? wp_register_script ? wp_register_style ? ??? ???? ?? ???????.

 ?? my_block_assets () {
    wp_register_script (
        '? ?? ??? ????',
        get_template_directory_uri (). '/blocks/my-block/build/index.js',
        ?? ( 'wp-blocks', 'wp-element', 'wp-editor'),
        filemtime (get_template_directory (). '/blocks/my-block/build/index.js')
    );

    wp_register_style (
        '? ?? ??? ???',
        get_template_directory_uri (). '/blocks/my-block/editor.css',
        ??(),
        filemtime (get_template_directory (). '/blocks/my-block/editor.css')
    );

    wp_register_style (
        '? ??-??? ???',
        get_template_directory_uri (). '/blocks/my-block/style.css',
        ??(),
        filemtime (get_template_directory (). '/blocks/my-block/style.css')
    );
}
add_action ( 'init', 'my_block_assets');

? ?? ?? ?????????.

  • ???? ???? wp-blocks , wp-element , wp-editor ? ?? ????? ???????.
  • filemtime() ???? ?? ??? ?? ???? ????? ?????.
  • ?? ???? ??? ???? ?? get_template_directory ???? ?? ????. ???? ? ?? plugins_url() ???? __FILE__ ? ??????.

3. ?? ?? ????? ?? ??

?? ??? ???? ?? WebPack, Vite ?? ?? ?? ??? ???? ?? ?? ?????? ???????.

  • ?? JS ??? UMD ????? WordPress ??? ??? ???? ???? ????????.
  • ????? ???? ??? ????? ?? WordPress (? : window.React , window.ReactDOM )?? ???? ??? ?? ??? ??????.
  • ?? ??? PHP? ?? ? ??? ????? ??????.

???? ?? :

  • ??? ????? /src/blocks/your-block/index.js ? ?????
  • ? ?? ???? /build/your-block/index.js ? ???????
  • ??? .asset.php ??? ???? ??? ? ?? ??? ???? ???? (WordPress ?? ??)

4. ??? ?? ?????????? ?

????? Gutenberg ??? style ?? ??? ??? ???? ?????????. ??? ??? ???? ????? ??? ?? ?? ? ????. ? ??? ??? ????.

  • ??? ?? ??? ??? ???? ????? ???? ( add_theme_support( 'wp-block-styles' ) ? ????? ??)
  • ???? ?? ?? ???? ?? ???? ?? ???? ??? ??? ???? ?? ????.
  • ?? ??? ??? ?? (?? ?? ??)?? ????? ????. ?? enqueue_block_assets ??? ???? ????????? ?? ??? ? ????.
 ?? my_enqueue_frontend_assets () {
    if (has_block ( 'my/block-name')) {
        wp_enqueue_style ( 'my-block-frontend-styles');
    }
}
add_action ( 'wp_enqueue_scripts', 'my_enqueue_frontend_assets');

? ??? ? ????? ??? ??? ???? ????? ??? ???????.


????? ?? ??. WordPress? ?? ?? ??? ??? ?? ? ?? ?????? ???? ? ??? ??? ??????? ? ? ????.

? ??? Gutenberg ??? ??? ???? ??? ?? ?????. ??? ??? PHP ??? ????? ?? ?? ??? ?????!

? ????? ??
? ?? ??? ????? ???? ??? ??????, ???? ?????? ????. ? ???? ?? ???? ?? ??? ?? ????. ???? ??? ???? ???? ??? ?? admin@php.cn?? ?????.

? AI ??

Undresser.AI Undress

Undresser.AI Undress

???? ?? ??? ??? ?? AI ?? ?

AI Clothes Remover

AI Clothes Remover

???? ?? ???? ??? AI ?????.

Video Face Swap

Video Face Swap

??? ??? AI ?? ?? ??? ???? ?? ???? ??? ?? ????!

???

??? ??

???++7.3.1

???++7.3.1

???? ?? ?? ?? ???

SublimeText3 ??? ??

SublimeText3 ??? ??

??? ??, ???? ?? ????.

???? 13.0.1 ???

???? 13.0.1 ???

??? PHP ?? ?? ??

???? CS6

???? CS6

??? ? ?? ??

SublimeText3 Mac ??

SublimeText3 Mac ??

? ??? ?? ?? ?????(SublimeText3)

???

??? ??

??? ????
1597
29
PHP ????
1488
72
NYT ?? ??? ??
130
836
???
WordPress Core ????? ???? ?? WordPress Core ????? ???? ?? Jul 02, 2025 am 12:05 AM

WordPress ??? ????? ????? ????? ?? ??? ???? ???? ?? ????? ???? ? ? ????. 1. WPDowngrade ? ?? ????? ???? ?? ?? ??? ???? ???? ?????? ??????. 2. ?? ??? WordPress? ???? ?????? FTP? ?? WP-includes, WP-Admin ? ?? ??? ????? WP-Config.php ? WP-Content? ??????. 3. wp-config.php? ??? ????? ??? ???? ?? ?????? ???? ?? ?? ?? ????? ???????. ??? ???? ???? ?? ???? ?? ? ??? ? ??????? ??????. ????? ?? ? ?? ????? ?? ??? ???? ?? ????.

WordPress?? ??? ?? ?? ??? ??? ?? WordPress?? ??? ?? ?? ??? ??? ?? Jul 02, 2025 am 12:21 AM

WordPress?? ??? ?? ?? ??? ???? ??? ??? ????. 1. functions.php ?? ?? ??? ?? ????? ?? PHP ??? ??????. 2. add_shortCode ()? ???? ??? ?? ?? ??? ??????. 3. ??? ???? ?? ?? ? ?? ??? ?????. ?? ??, ?? ?? ??? ?? ? ??? ??? ?? ?? ? ?? ?? ??? ?? ? ? ????. ??? ??? ? ????? [buttoncolor = "red"url = "https://example.com"]? ?? ??? ?? ? ? ???, do_shortcode ()? ???? ??? ? ? ????.

WordPress? ?? ?? CPU ??? ???? ?? WordPress? ?? ?? CPU ??? ???? ?? Jul 06, 2025 am 12:08 AM

WordPress? ?? CPU ??? ??? ???? ?? ???? ???? ??, ???? ? ?????? ??, ?? ??? ?? ?? ?? ??? ??? ?????. 1. ??, ??, HTOP ?? ??? ??? ?? WordPress? ?? ?? ???? ??????. 2. ?? ?? ??? ????? ????? ????? ????? ?? ?? ?? ??? ???? QueryMonitor? ???? ???? ??? ???? ???? ? ????? ????? ??????. 3. ?? ????? ????, ?? ???? ????, ?? ?? ??? ???? ??????? ???????. 4. ??? ??? ??, ??? ?? ?? ?? ???? ??? ?? ??? ??? ??????. ?? ?? ???? ???? ?? ??? ???? ????? ?? ????. ?? ??? ?? ??? ???? ???? ??? ??? ??????.

?????? WordPress? ????? ?? ?????? WordPress? ????? ?? Jul 05, 2025 am 12:01 AM

????? ???? ?? WordPress ???? ????? ??? ??? ????. 1. ?? ?? ??? ??? ?? Astra ?? GeneratePress? ?? ??? ??? ??????. 2. CSS ? JS ??? ???? ???? ???? HTTP ??? ????. 3. ????? ?? ??? ???, ? ??? ???? ?? ??? ??????. 4. configure.htaccess ???? ??? ????? CDN? ???? ?? ????? ??? ??????. 5. ?? ??? ???? ????? ?????? ?? ???? ??????.

WordPress?? JavaScript ??? ????? ?? WordPress?? JavaScript ??? ????? ?? Jul 07, 2025 am 01:11 AM

JavaScript ??? ????? ?, ?? ? ???? ??? ???? WordPress ? ????? ??? ???? ? ????. 1. W3TotalCache, "Minify"???? ?? ??? ????? ??? CACHE ????? ??????. 2. FastvelocityMinify? ?? ?? ?? ????? ?????? ??? ? ??? ??????. 3. ?? ??? ??? ????? ??? JS ??? ???? ???? FTP? ?? ???????. ?? ?? ?? ???? ????? ?? ??? ?? ? ? ??? ??? ? ? ??? ??? ??? ????????.

??? ?? API? ???? ?? ??? ?? API? ???? ?? Jul 05, 2025 am 12:05 AM

TransitientSapi? ?? ?? ???? ??? ?????? WordPress? ?? ?????. ?? ??? set_transient, get_transient ? delete_transient???. ?? API? ???? ??? CACHE API ?? ?? ? ??? ??? ???? ?? ????? ??? ?? ?? (TTL) ??? ?????. ?? ??? ?? ?? ?? ? ?? ????? ???, "??? ??"???? ? ?? ?? ???? ???? ?? ??? ?????? ???????. ???? ?? ???? ?????? ?? ?? ?? ??, ?? ?? ?? ?? ? ????? ?? ??? ?????.

?? ????? ?? ?? ??? ???? ?? ?? ????? ?? ?? ??? ???? ?? Jul 03, 2025 am 12:23 AM

???? ??? ???? ????? ????, ?? ??? ? ?? ????? ???? ?? ?? ???? ?????. 1. ??? "???"? ??? ????? ??? ??, ???? ?? ?? ?? ????, ?? ???????? ?? ? ? ??? ??? ???? ??? ? ? ????. 2. Redis? ?? ???? ???? RDB ?? AOF ??? ????? ???? ?? ??? ???? ?? ???? ????? ?? ??????? ?? ? ?? ????. 3. ? TTL ?? ???? ?? ?? ???? ??? : 1001 : ????? ?? ??? ? ?? ??? ???? ???? ??? ? ??? ??? ????????. 4. ?? ? ?? ??? ???? ??? ??? ? ? ??? Redis? ???? ? ???? ???? ?? ??? ? ??? ??? ? ??? ??? ? ??? ?? ?????? ??? ? ????.

???? ?? ????? ???? ?? ???? ?? ????? ???? ?? Jul 04, 2025 am 01:02 AM

PluginCheck? WordPress ???? ???? ??? ? ??? ???? ???? ? ????? ?????. ?? ?? ??? ????? ?? ??? WordPress, ?? ??? ?? ???? ??? ??? ??? ???? ? ?????. 1. ??? ???? ??? ?????? ?? ? ??? ? ??????? "Runascan"??? ???? ?? ????? ???? ??????. 2.? ????? ???? ??, ?? ??, ?? ?? ? ??? ??? ???? ???, ?? ??? ??? ?? ?? ??? ???????. 3. ? ??? ??? ???? ? ?? WordPress? ?????? ?? ??? ???? ?? ????.

See all articles