سلام
قالب طراحی شده توسط خودم مشکل داره و وقتی وارد مدیریت میشم صفحه سفید و باید فایل فانکشن حذف یا تغییر نام داده بشه تا صفحه باز بشه
تو خود مدیرت هم هر تغییری و ذخیره اون باحث میشه صفحه سفید بشه
دوستان اگه میتونند راهنمایی کنند
کدهای مجود در فایل فانکشن:
قالب طراحی شده توسط خودم مشکل داره و وقتی وارد مدیریت میشم صفحه سفید و باید فایل فانکشن حذف یا تغییر نام داده بشه تا صفحه باز بشه
تو خود مدیرت هم هر تغییری و ذخیره اون باحث میشه صفحه سفید بشه
دوستان اگه میتونند راهنمایی کنند
کدهای مجود در فایل فانکشن:
کد:
<?php
add_theme_support( 'post-thumbnails' );
function register_my_menus() {
register_nav_menus(
array(
'top-menu' => __( 'menu2' )
)
);
}
add_action( 'init', 'register_my_menus' );
function getPostViews($postID){
$count_key = 'post_views_count';
$count = get_post_meta($postID, $count_key, true);
if($count==''){
delete_post_meta($postID, $count_key);
add_post_meta($postID, $count_key, '0');
return "بدون بازدید";
}
return $count.' بازدید';
}
// function to count views.
function setPostViews($postID) {
$count_key = 'post_views_count';
$count = get_post_meta($postID, $count_key, true);
if($count==''){
$count = 0;
delete_post_meta($postID, $count_key);
add_post_meta($postID, $count_key, '0');
}else{
$count++;
update_post_meta($postID, $count_key, $count);
}
}
if ( ! function_exists( 'mamanz_pagination' ) ) :
function mamanz_pagination() {
global $wp_query;
$big = 999999999; // need an unlikely integer
echo paginate_links( array(
'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ),
'format' => '?paged=%#%',
'current' => max( 1, get_query_var('paged') ),
'prev_next' => True,
'prev_text' => __('صفحه قبل'),
'next_text' => __('صفحه بعد'),
'total' => $wp_query->max_num_pages
) );
}
endif;
?>