wordpress_theme_weblog/functions/theme_setup.php
mohammadelendil f847592c7b first
2024-08-24 11:31:19 +03:30

15 lines
No EOL
514 B
PHP

<?php
function theme_setup(){
add_theme_support('title-tag');
add_theme_support('widgets');
add_theme_support('post-thumbnails');
add_theme_support('custom-logo');
register_nav_menus(array(
'Main_Menu'=>' 0لوکیشن: هدر',
'ّone'=>' لوکیشن: ستون 1',
'ّtwo'=>' لوکیشن: ستون 2',
'ّthree'=>' لوکیشن: ستون 3'
) );
}
add_action("after_setup_theme", "theme_setup" );
?>