• 01-02-2014, 18:06:42
    #1
    Soru 1
    Video sayfası yaptım ancak sayfalama çalışmıyor. Link değişmesine rağmen aynı içeriği gösteriyor.

    <?php get_header(); ?>
    <section id="primary">
    	<div id="content" class="full-content" role="main">
    		<div class="ngg-albumoverview">
    			<?php query_posts('showposts=45&orderby=date&cat=423'); ?>
    				<?php while (have_posts()) : the_post(); ?>
    					<?php if(get_post_meta($post->ID, 'mvb_thumb_url', true)) { ?>
    						<?php $videothumb = get_post_meta($post->ID, 'mvb_thumb_url', true); ?>
    							<div class="ngg-album-compact">
    								<div class="ngg-album-compactbox">
    									<div class="ngg-album-link">
    										<a class="Link" href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
    											<img class="Thumb" alt="<?php the_title(); ?>" src="timthumb.php?src=<?php echo $videothumb ?>&h=90&w=120">
    										</a>
    									</div>
    								</div>
    							</div>
    						<?php } ?>
    				<?php endwhile; ?>
    					<?php wt_pagination(); ?>
    				<div class="ngg-clear"></div>
    		</div>
    		
    			
    	</div><!-- /content -->
    </section><!-- /primary -->
    
    
    <?php get_footer(); ?>
    Soru 2


    Resimdeki gibi yazı alanındaki butonlar kayboldu. Site genel ayarlarında site adresini www. suz olarak girdiğimde düzeliyor ancak neden böyle oldu anlamıyorum. www. suz kullanmakta istemiyorum. Tüm eklentileri pasifleştirdim, hatta son sürümü tekrar yükledim ancak sorun devam ediyor.
  • 01-02-2014, 18:10:48
    #2
    Üyeliği durduruldu
    Wp-Config.php dosyasını açın
    Kodları fizibilitesini bozmayacak şekilde uygun biryere bu kodu yapıştırın ve sorunun çözüldüğünü göreceksiniz.

    define( ‘CONCATENATE_SCRIPTS’, false );
    define( ‘COMPRESS_SCRIPTS’, false );
    define( ‘SCRIPT_DEBUG’, true );
  • 01-02-2014, 18:35:15
    #3
    Bityavrusu adlı üyeden alıntı: mesajı görüntüle
    Wp-Config.php dosyasını açın
    Kodları fizibilitesini bozmayacak şekilde uygun biryere bu kodu yapıştırın ve sorunun çözüldüğünü göreceksiniz.

    define( ‘CONCATENATE_SCRIPTS’, false );
    define( ‘COMPRESS_SCRIPTS’, false );
    define( ‘SCRIPT_DEBUG’, true );
    maalesef iki sorunda aynı şekilde duruyor herhangi bir değişme olmadı.
  • 01-02-2014, 19:39:00
    #4
    <?php get_header(); ?>
    <?php
    $temp = $wp_query;
    $wp_query= null;
    $wp_query = new WP_Query();
    $wp_query->query('paged='.$page);
    ?>
    <section id="primary">
       <div id="content" class="full-content" role="main">
          <div class="ngg-albumoverview">
    	  
    	  <?php 
    	query_posts('showposts=45&orderby=date&cat=423&paged='.$paged );
    	while (have_posts()) : the_post(); ?>
                   <?php if(get_post_meta($post->ID, 'mvb_thumb_url', true)) { ?>
                      <?php $videothumb = get_post_meta($post->ID, 'mvb_thumb_url', true); ?>
                         <div class="ngg-album-compact">
                            <div class="ngg-album-compactbox">
                               <div class="ngg-album-link">
                                  <a class="Link" href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
                                     <img class="Thumb" alt="<?php the_title(); ?>" src="timthumb.php?src=<?php echo $videothumb ?>&h=90&w=120">
                                  </a>
                               </div>
                            </div>
                         </div>
                      <?php } ?>
                <?php endwhile;
    			wp_reset_query();
    			?>
                   <?php wt_pagination(); ?>
                <div class="ngg-clear"></div>
          </div>
           
              
       </div><!-- /content -->
    </section><!-- /primary -->
     
     
    <?php get_footer(); ?>
    büyük ihtimal çalışacaktır hocam, kolay gelsin.
  • 01-02-2014, 22:21:50
    #5
    krmcnyldrm adlı üyeden alıntı: mesajı görüntüle
    <?php get_header(); ?>
    <?php
    $temp = $wp_query;
    $wp_query= null;
    $wp_query = new WP_Query();
    $wp_query->query('paged='.$page);
    ?>
    <section id="primary">
       <div id="content" class="full-content" role="main">
          <div class="ngg-albumoverview">
    	  
    	  <?php 
    	query_posts('showposts=45&orderby=date&cat=423&paged='.$paged );
    	while (have_posts()) : the_post(); ?>
                   <?php if(get_post_meta($post->ID, 'mvb_thumb_url', true)) { ?>
                      <?php $videothumb = get_post_meta($post->ID, 'mvb_thumb_url', true); ?>
                         <div class="ngg-album-compact">
                            <div class="ngg-album-compactbox">
                               <div class="ngg-album-link">
                                  <a class="Link" href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
                                     <img class="Thumb" alt="<?php the_title(); ?>" src="timthumb.php?src=<?php echo $videothumb ?>&h=90&w=120">
                                  </a>
                               </div>
                            </div>
                         </div>
                      <?php } ?>
                <?php endwhile;
    			wp_reset_query();
    			?>
                   <?php wt_pagination(); ?>
                <div class="ngg-clear"></div>
          </div>
           
              
       </div><!-- /content -->
    </section><!-- /primary -->
     
     
    <?php get_footer(); ?>
    büyük ihtimal çalışacaktır hocam, kolay gelsin.
    hocam sağ olun çalıştı ancak ilk sayfa dışında içerik geliyor ama sayfalama butonları kayboluyor