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

36 lines
No EOL
1.3 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
function theme_widgets(){
register_sidebar(array(
"id"=>"fdesc",
"name"=>"ابزارک فوتر",
"description"=>"ابزارک برای درج توضیحات فوتر",
"before_widget"=>"<div class='desc_footer footer-menu'>",
"after_widget"=>"</div>",
"before_title"=>"<span class='title'>",
"after_title"=>"</span>",
));
register_sidebar(array(
"id"=>"latest_posts_wig",
"name"=>"ابزارک نمایش آخرین مطالب",
"description"=>"نمایش آخرین مطالب سایت در صفحه جزئیات مطلب",
"before_widget"=>"<div class='side_bx'>",
"after_widget"=>"</div>",
"before_title"=>"<span class='title'>",
"after_title"=>"</span>",
));
register_sidebar(array(
"id"=>"cats_wig",
"name"=>"ابزارک نمایش دسته بندی ها",
"description"=>"نمایش دسته بندی مطالب سایت در صفحه جزئیات مطلب",
"before_widget"=>"<div class='side_bx'>",
"after_widget"=>"</div>",
"before_title"=>"<span class='title'>",
"after_title"=>"</span>",
));
}
add_action("widgets_init","theme_widgets" );
?>