با سلام خدمت مدیران و کاربران گرامی همیار وردپرس
من یه قالب جدید روی سایتم گذاشتم متاسفانه متوجه شدم که بیشتر مواقع سایت به صورت صفحه ای سفید باز میشه با پرسش هایی که من داشتم گفتن مشکل از تبعات پوسته یا همون functions هستش اگه امکانش هست من فایل های functions رو برای ویرایش برای کسی که بلده ارسال کنم اینم از کد ها
<?php
function register_my_menus() {
register_nav_menus(
array(
'header-menu' => __( 'منوی بالا' ),
'cat-menu' => __( 'منوی موضوعات' ),
)
);
}
add_action( 'init', 'register_my_menus' );
register_sidebar(array(
'name' => 'Sidebar',
'id' => 'left-top',
'description' => '' ,
'before_widget' => '<div class="lside-box">',
'after_widget' => '</div></div>',
'before_title' => '<div class="t-lside1"><span class="livicon" data-n="gift" data-size="25" data-c="#fff"></span>',
'after_title' => '</div><div class="not"><div class="not2"></div></div><div class="lside-con">',
));
function wpbeginner_numeric_posts_nav() {
if( is_singular() )
return;
global $wp_query;
/** Stop execution if there's only 1 page */
if( $wp_query->max_num_pages <= 1 )
return;
$paged = get_query_var( 'paged' ) ? absint( get_query_var( 'paged' ) ) : 1;
$max = intval( $wp_query->max_num_pages );
/** Add current page to the array */
if ( $paged >= 1 )
$links[] = $paged;
/** Add the pages around the current page to the array */
if ( $paged >= 3 ) {
$links[] = $paged - 1;
$links[] = $paged - 2;
}
if ( ( $paged + 2 ) <= $max ) {
$links[] = $paged + 2;
$links[] = $paged + 1;
}
echo '<div class="navigation">
- ' . "\n";
- %s ' . "\n", get_previous_posts_link() );
- … ';
- … ' . "\n";
- %s ' . "\n", get_next_posts_link() );
/** Previous Post Link */
if ( get_previous_posts_link() )
printf( '
/** Link to first page, plus ellipses if necessary */
if ( ! in_array( 1, $links ) ) {
$class = 1 == $paged ? ' class="active"' : '';
printf( '<li%s>%s' . "\n", $class, esc_url( get_pagenum_link( 1 ) ), '1' );
if ( ! in_array( 2, $links ) )
echo '
}
/** Link to current page, plus 2 pages in either direction if necessary */
sort( $links );
foreach ( (array) $links as $link ) {
$class = $paged == $link ? ' class="active"' : '';
printf( '<li%s>%s' . "\n", $class, esc_url( get_pagenum_link( $link ) ), $link );
}
/** Link to last page, plus ellipses if necessary */
if ( ! in_array( $max, $links ) ) {
if ( ! in_array( $max - 1, $links ) )
echo '
$class = $paged == $max ? ' class="active"' : '';
printf( '<li%s>%s' . "\n", $class, esc_url( get_pagenum_link( $max ) ), $max );
}
/** Next Post Link */
if ( get_next_posts_link() )
printf( '
echo '
}
require_once(TEMPLATEPATH . '/admin/admin-functions.php');
require_once(TEMPLATEPATH . '/admin/admin-interface.php');
require_once(TEMPLATEPATH . '/admin/theme-settings.php');
?>
<?php include(TEMPLATEPATH .'/adsmanage.php'); ?>
<?php
// Add support for Featured Images
if (function_exists('add_theme_support')) {
add_theme_support('post-thumbnails');
add_image_size('index-categories', 150, 150, true);
add_image_size('page-single', 350, 350, true);
}
function autoset_featured() {
global $post;
$already_has_thumb = has_post_thumbnail($post->ID);
if (!$already_has_thumb) {
$attached_image = get_children( "post_parent=$post->ID&post_type=attachment&post_mime_type=image&numberposts=2" );
if ($attached_image) {
foreach ($attached_image as $attachment_id => $attachment) {
set_post_thumbnail($post->ID, $attachment_id);
}
}
}
} //end function
add_action('the_post', 'autoset_featured');
add_action('save_post', 'autoset_featured');
add_action('draft_to_publish', 'autoset_featured');
add_action('new_to_publish', 'autoset_featured');
add_action('pending_to_publish', 'autoset_featured');
add_action('future_to_publish', 'autoset_featured');
?>