WordPress ?? ?? ????? ??? ??? ???? ????? wp_enqueue_style () ??? ???????. 1. WP_ENQUEUE_STYLE ()? ???? CSS ??? ??????????. ?? ??? wp_enqueue_style ($ hone, $ src, $ deps, $ ver, $ media)???. ??? $ ??? ?? ????? $ src? CSS ?? URL, $ deps? ??? ???, $ ver? ?? ???? $ media? ??? ?????. 2. Enqueue ??? ???? functions.php ??? ???? wp_enqueue_scripts ??? ???? ?????? ?????. 3. IS_FRONT_PAGE (), IS_SILLE () ?? IS_PAGE_TEMPLATE ()? ?? ?? ??? ???? ?? ???? ?? ?? ??????? ?????. 4. ??? ???? ? ??? ???????. ???? ?? ? ?? ????. WP_STYLE_IS ()? ?? ???? ??? ??? ? ????. 5. ?? ?? ???? ?? ???? ?????? ?? ?? ?????????? ??? ??? ???? ?? ???? ???????.
WordPress ?? ?? ????? ??? ??? ???? ???? ?? ??? echo '<link>'
?? ??? ????. ??? ??? ??? ??? ??? ?? ??? ???? ? ? ?? ? ??? wp_enqueue_style()
??? ???? ????.
wp_enqueue_style? ??? ?? ??
wp_enqueue_style()
CSS ??? ???????? ? ???? WordPress? ???? ?? ?????. ?? ???? ??? ????.
wp_enqueue_style ($ ??, $ src, $ deps, $ ver, $ media);
-
$handle
:'my-style'
? ?? ???? ?? ??? (ID) -
$src
: CSS ??? URL ?? -
$deps
:? ????'main-style'
? ?? ?? ??? -
$ver
: ?? ??? ???? ?? ???filemtime(get_stylesheet_directory() . '/style.css')
??? ? ???? ?? ??? ???? ?? ? ????. -
$media
:'all'
,'screen'
,'print'
?? ?? ??? ??, ????'all'
???.
????? ??? functions.php
??? Enqueue ??? ???? wp_enqueue_scripts
Hook? ?? ?????.
??? ???? ?? ??????????
??? ????, ?? ?? ?? ??? ?? ??? ?? ??? ???? ?? ?? ??? ? ???? ?? CSS ???????????. ? ???? ??? ???? eNqueue? ????? ??? ??? ? ????.
???? ?? ??? ??? ????.
-
is_front_page()
: ???? ??? ????? -
is_single()
: ?? ?? ????? ?????. -
is_page_template('template-name.php')
: ??? ???? ????? ??? ?????
?? ??:
add_action ( 'wp_enqueue_scripts', 'enqueue_custom_styles'); ?? enqueue_custom_styles () { if (is_page_template ( 'template-landing.php')) { wp_enqueue_style ( '?? ???', get_template_directory_uri (). '/css/landing.css'); } }
????? ???? ??? ??? ??? ??? ??? ??? ??? ??? ?? ? ????.
??? ?? ?? ? ?? ?????????
? ??? ???? ?? ? handle
??? ??????. ??? ?? ??? ????? ???? ????????? ?? ?? ?? ? ????.
?? ??, 'main-style'
???? ????? ?? ??? ???? ?? ????? ? ????. ??? ???? 'yourtheme-main-style'
?? 'yourplugin-style'
? ?? ??? ??? ???? ?? ????.
???? ?????? ????? wp_style_is( $handle, 'registered' )
???? ??? ? ????.
??? ??? ??? ??? ?????
??? ??? ???? ?? ????? ?? ??? ???? ?????? ??? ??? ????????????. ?? ??? ??????????.
?? ?? ?? :
add_action ( 'wp_enqueue_scripts', 'enqueue_parent_and_child_styles'); ?? enqueue_parent_and_child_styles () { // ?? ?? ??? ?? wp_enqueue_style ( '?? ???', get_template_directory_uri (). '/style.css'); // ?? ???? ???? ??? ?? ???? ?? ???? wp_enqueue_style ( 'child-style', get_stylesheet_directory_uri (). '/style.css', array ( 'Parent-Style')); }
get_template_directory_uri()
???? ?? ?? ????? ???? ? ???? get_stylesheet_directory_uri()
?? ?? ?? ????? ???? ? ?????.
????? ?? ??. ??? ????, ?? ? ???? ????? ????, ??? ???? ?, ???? ???????? ??? ?? ? ????.
? ??? WordPress?? ???? ???? ???? ??? ?? ?????. ??? ??? PHP ??? ????? ?? ?? ??? ?????!

? AI ??

Undress AI Tool
??? ???? ??

Undresser.AI Undress
???? ?? ??? ??? ?? AI ?? ?

AI Clothes Remover
???? ?? ???? ??? AI ?????.

Clothoff.io
AI ? ???

Video Face Swap
??? ??? AI ?? ?? ??? ???? ?? ???? ??? ?? ????!

?? ??

??? ??

???++7.3.1
???? ?? ?? ?? ???

SublimeText3 ??? ??
??? ??, ???? ?? ????.

???? 13.0.1 ???
??? PHP ?? ?? ??

???? CS6
??? ? ?? ??

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

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

?? ??? ???? ?? ???? ??? ????? ??? ?? ???? ???? ?? ?? ????. 1. ??? ??? ????? ???? ?? ?? ?? ???? (? : Googler Captcha ?? Hcaptcha)? ???? ?? ?? ? ???? ?????. 2. ??? ?? (Honeypot Technology)? ???? ??? ???? ??? ??? ??? ??? ?? ?? ??? ???? ?? ??? ???? ??????. 3. ?? ??? ???? ?????? ???? ??? ?? ??? ?? ?? ??? ????? ?? ??? ??? ????? ?????. 4. ??? ?? ? ?? IP? ???? ?? ??? ?? ?? ???? ?????? ??????. 5. Akismet, CloudFlare? ?? ?? ? ?? ???? ???? ?? ???? ??????. ? ???? ???? ? ? ????

Gutenberg ??? ??? ? Enqueue Assets? ??? ???? ??? ?????. 1. Register_Block_type? ???? editor_script, editor_style ? style? ??? ?????. 2. functions.php ?? ????? wp_register_script ? wp_register_style? ?? ???? ???? ??? ??? ? ??? ??????. 3. ??? ?? ??? ????? ?? ??? ???? ??? ?????????. 4. Add_theme_support ?? enqueue_block_assets? ?? ??? ?? ????????? ???? ??? ?? ?????? ??? ????????.

WordPress?? ??? ?? ? ?? ??? ???? ??? add_rewrite_rule ??? ???? ??? ???? ????? ???? ????. 1. add_rewrite_rule? ???? ??? ??????. ??? add_rewrite_rule ($ regex, $ ridirect, $ after)???. ??? $ regex? ?? ??? ?? URL, $ redirect? ?? ??? ????, ? ??? ?????. 2. add_filter? ?? ??? ?? ?? ??? ???????. 3. ?? ? ?? ?? ??? ?? ???????. 4. ??? ??? ?? ??? '??'? ???? ?? ????. 5. ????? ???? ??? ?? ?? ??? ? ? ????.

Robots.txt? WordPress ? ???? SEO? ???? ?? ??? ?????, ???? ?? ??? ???? ?? ???? ?? ??? ?? ? ? ????. 1. /wp-admin /? /wp-includes /? ?? ??? ??? /??? /????? ??? ???? ????. 2. Siteemap? ?? ??? ? ??? ?????? : https://yourdomain.com/sitemap.xml ?? ??? ??? ?? ??? ?? ? ? ??? ?????. 3. ??? ???? ??? ?? ?? ????? ?? / ??? / ? URL? ??? ???? ???? ???? ?????????. 4. ??? ?? ???? ???? ?? ????? ????? ??? ??? ??? ?? ? ?? ???? ??? ???? ?? ?? ???? ??? ?????.

1. ?? ?? ????? ???? ??? ???? ?????. ?? ??, QueryMonitor? ?????? ?? ? PHP ?? ?? ? ? ??? BlackBoxProfiler? ?? ?? ???? ???? NewRelic? ?? ?? ??? ?????. 2. PHP ?? ??? ????? ??? ?? ??? ??? ???? XDEBUG? ?? ?? ?? ? ??? ??? ????? ???? ???? ?? ?? ???? ???????. 3. ?? ?? ?? ? ?? ??? ?? ?????? ?? ??? ???? ? ? ????. QueryMonitor? ?? SQL? ?? ? ? ????. 4. GooglePagesPeedInsights, GTMetrix ? WebPagetest? ?? ?? ??? ?? ?? ??? ??? ?????.

WordPressRequiresatleastphp7.4, ??? 8.0oRhigherisrecemendedForBetTerformanceAndSecurity.olderversionsike5.6 areoutdated, supported, andposeSecurityRisks.usinguppimprovessecurity, EnhancesPercormance ? andensurescompatibility withmombernplplplplplplplplplplplplplplplplplplplplplplplplplply

InspectorControls? Gutenberg ??? ???? ?? ?????. 1. @WordPress/Block-Editor ???? ????. 2. ?? ??, ??? ?? ? ?? ?? ??? ?? ?????. 3.?? ??? ?? ??? ??, ??? ??, ???, ???? ? ?? ???? ?? ?? ??? ???? ????? ???????. 4. ?? ?????? ???? ???? ???? ???? ???? ??? ???????.
