• Olá galera, tenho o seguinte código, ele mostra o ícone da paginação, mas não imprimindo nada para a segunda página, assim a segunda página não está sendo gerada com os arquivos .

    'name' => '',
    			'category' => '',
    			'style' => '',
    			'effects' => '',
    			'circle_animation' => '',
    			'circle_margin_right' => '',
    			), $atts) );
    
    			if ( get_query_var('paged') ) { $paged = get_query_var('paged'); }
    			elseif ( get_query_var('page') ) { $paged = get_query_var('page'); }
    			else { $paged = 1; }
    			$args = array(
    			'id_per_page' => 1,
    			'post_type' => 'rd-hover',
    			'hover_cat' => $category,
    			'paged' => $paged,
    			);
    			$id = get_the_ID();
    			$q = new WP_Query( $args );
    			while($q->have_posts() ) : $q->the_post();
    			$rdmeta = vp_metabox('rdmeta.rd-hover', false);
    			$i = 0;
    			$x = 1;
    
    			$output = '<div id="'.$style.'"><ul>';
    
    			foreach ($rdmeta as $info) {
    			$id++;
    			if ($effects=="square") {
    				if ($x == 1){
    					$box = 'box1';
    					$ttext = 'ttext1';
    				} elseif ($x == 2){
    					$box = 'box2';
    					$ttext = 'ttext2';
    				} elseif ($x == 3) {
    					$box = 'box3';
    					$ttext = 'ttext3';
    				} elseif ($x == 4){
    					$box = 'box4';
    					$ttext = 'ttext4';
    				}
    
    				$output .= '
    				<style type="text/css">
    				@import url(http://fonts.googleapis.com/css?family='.$google_font.');
    				</style>
    					<div id="'.$box.'" class="rakib-dev rakib-dev-first">
    					     <img src="'.$info['imgup_1'].'" />
    	                    	<div class="mask">
    	                    	<h2>'.$info['title'].'</h2>
    									<p>'.$info['desc'].'</p>
    							<a href="http://www.youtube.com/watch?v='.$info['link'].'" class="info" rel="wp-video-lightbox">'.$info['link_title'].'</a>
    						   </div>
    					</div>
    						<p id="'.$ttext.'" class="rakib-dev"><strong>'.$info['ttext'].'</strong></br>'.$info['textf'].'</p>
    
    					';
    					}
    			if ($x == 4)
    				$x = 1;
    			else
    				$x++;
  • O tópico ‘Páginação não funciona’ está fechado para novas respostas.