Postagens diferentes na index
-
Olá galera , estou realizando meu primeiro projeto em wordpress após criar todo o código e passa-lo para a plataforma wordpress encontrei um obstáculo que esta me fornecendo alguma dor de cabeça ….
No meu projeto existem dois tipos de postagens diferentes na “index.php” , uma postagem grande no topo seguida por duas menores em baixo e novamente uma grande igual a inicial. Como o modelo de postagem é diferente quando insiro o código as 4 postagem estão exibindo o mesmo post ( não quero dividir por categorias ou algo similar , somente as postagens da index tem um layout diferentes )
eis como está o código da minha index , não é dos melhores :
<?php get_header();?> <?php get_sidebar();?> <!-- postagem grande --> <div class="postagem-grande"> <div class="top-post-g"> <div class="tag"> <?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?> <?php /* If this is a category archive */ if (is_category()) { ?> Arquivo da Categoria "<?php echo single_cat_title(); ?>" <?php /* If this is a daily archive */ } elseif (is_day()) { ?> Arquivo de <?php the_time('j \d\e F \d\e Y'); ?> <?php /* If this is a monthly archive */ } elseif (is_month()) { ?> Arquivo de <?php the_time('F \d\e Y'); ?> <?php /* If this is a yearly archive */ } elseif (is_year()) { ?> Arquivo de <?php the_time('Y'); ?> <?php /* If this is an author archive */ } elseif (is_author()) { ?> Arquivo do Autor <?php /* If this is a paged archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?> Arquivo do Blog <?php } ?> </div> </div> <div class="triangulo"></div> <div class="remedio"></div> <div class="fundo-post-g"></div> <div class="conteudo"> <h2><a href="<?php the_permalink() ?>"><?php the_title(); ?><a/></h2> <div class="post-info"> <ul> <li><img src="http://127.0.0.1/wordpress/wp-content/uploads/2012/05/data.png"><a href="#"> <?php the_time('d/M/Y') ?></a></li> <li><img src="http://127.0.0.1/wordpress/wp-content/uploads/2012/05/pessoal.png"><a href="#"> <?php the_author() ?></a></li> <li><img src="http://127.0.0.1/wordpress/wp-content/uploads/2012/05/comentario.png"><a href="#"> <?php comments_popup_link('Sem comentários', '1 comentários', '% comentários', 'comments-link', ''); ?></a></li> </ul> </div> <div class="post-cnt"> <?php the_post_thumbnail('grande'); ?> <a href="<?php the_permalink() ?>"><?php the_content_limit(100, 'Leia mais...');?></p></a> </div> </div> </div> <div class="editar"> <?php edit_post_link('X'); ?> </div> <!-- FIM postagem grande --> <!-- postagem pequena 'duas'--> <div class="duble-post"> <ul> <!-- postagem da esquerda--> <li> <!-- barra laranja da postagem--> <div class="postagem-pequena"> <div class="top-post-p"> <div class="tag"> <?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?> <?php /* If this is a category archive */ if (is_category()) { ?> Arquivo da Categoria "<?php echo single_cat_title(); ?>" <?php /* If this is a daily archive */ } elseif (is_day()) { ?> Arquivo de <?php the_time('j \d\e F \d\e Y'); ?> <?php /* If this is a monthly archive */ } elseif (is_month()) { ?> Arquivo de <?php the_time('F \d\e Y'); ?> <?php /* If this is a yearly archive */ } elseif (is_year()) { ?> Arquivo de <?php the_time('Y'); ?> <?php /* If this is an author archive */ } elseif (is_author()) { ?> Arquivo do Autor <?php /* If this is a paged archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?> Arquivo do Blog <?php } ?> </div> </div> <div class="triangulo"></div> <div class="remedio"></div> <!--FIM barra laranja da postagem--> <!--titulo e imagem--> <div class="ptimg"> <a href="#"><p><?php the_title(); ?></p></a> <?php the_post_thumbnail('pequeno'); ?> </div> <!--FIM titulo e imagem--> <!--informações da postagem--> <div class="post-info2"> <ul> <li><img src="http://127.0.0.1/wordpress/wp-content/uploads/2012/05/data.png"><a href="#"> <?php the_time('d/M/Y') ?></a></li> <li><img src="http://127.0.0.1/wordpress/wp-content/uploads/2012/05/pessoal.png"><a href="#"> <?php the_author() ?></a></li> </ul> </div> <!-- FIM informações da postagem--> </div> <div class="editar"> <?php edit_post_link('X'); ?> </div> <!-- postagem da direita--> <li> <div class="postagem-pequena"> <!-- barra laranja da postagem--> <div class="top-post-p"> <div class="tag"> <?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?> <?php /* If this is a category archive */ if (is_category()) { ?> Arquivo da Categoria "<?php echo single_cat_title(); ?>" <?php /* If this is a daily archive */ } elseif (is_day()) { ?> Arquivo de <?php the_time('j \d\e F \d\e Y'); ?> <?php /* If this is a monthly archive */ } elseif (is_month()) { ?> Arquivo de <?php the_time('F \d\e Y'); ?> <?php /* If this is a yearly archive */ } elseif (is_year()) { ?> Arquivo de <?php the_time('Y'); ?> <?php /* If this is an author archive */ } elseif (is_author()) { ?> Arquivo do Autor <?php /* If this is a paged archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?> Arquivo do Blog <?php } ?> </div> </div> <div class="triangulo"></div> <div class="remedio"></div> <!--FIM barra laranja da postagem--> <!--titulo e imagem--> <div class="ptimg"> <a href="#"><p><?php the_title(); ?></p></a> <?php the_post_thumbnail('pequeno');?> </div> <!--FIM titulo e imagem--> <!--informações da postagem--> <div class="post-info2"> <ul> <li><img src="http://127.0.0.1/wordpress/wp-content/uploads/2012/05/data.png"><a href="#"> <?php the_time('d/M/Y') ?></a></li> <li><img src="http://127.0.0.1/wordpress/wp-content/uploads/2012/05/pessoal.png"><a href="#"> <?php the_author() ?></a></li> </ul> </div> <!-- FIM informações da postagem--> </div> <div class="editar"> <?php edit_post_link('X'); ?> </div> </ul> </div> <!--FIM postagem pequena--> <br><br><br><br><br><br><br><br><br><br><br><br><br><br><br> <!-- postagem grande --> <div class="postagem-grande"> <div class="top-post-g"> <div class="tag"> <?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?> <?php /* If this is a category archive */ if (is_category()) { ?> Arquivo da Categoria "<?php echo single_cat_title(); ?>" <?php /* If this is a daily archive */ } elseif (is_day()) { ?> Arquivo de <?php the_time('j \d\e F \d\e Y'); ?> <?php /* If this is a monthly archive */ } elseif (is_month()) { ?> Arquivo de <?php the_time('F \d\e Y'); ?> <?php /* If this is a yearly archive */ } elseif (is_year()) { ?> Arquivo de <?php the_time('Y'); ?> <?php /* If this is an author archive */ } elseif (is_author()) { ?> Arquivo do Autor <?php /* If this is a paged archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?> Arquivo do Blog <?php } ?> </div> </div> <div class="triangulo"></div> <div class="remedio"></div> <div class="fundo-post-g"></div> <div class="conteudo"> <h2><a href="<?php the_permalink() ?>"><?php the_title(); ?><a/></h2> <div class="post-info"> <ul> <li><img src="http://127.0.0.1/wordpress/wp-content/uploads/2012/05/data.png"><a href="#"> <?php the_time('d/M/Y') ?></a></li> <li><img src="http://127.0.0.1/wordpress/wp-content/uploads/2012/05/pessoal.png"><a href="#"> <?php the_author() ?></a></li> <li><img src="http://127.0.0.1/wordpress/wp-content/uploads/2012/05/comentario.png"><a href="#"> <?php comments_popup_link('Sem comentários', '1 comentários', '% comentários', 'comments-link', ''); ?></a></li> </ul> </div> <div class="post-cnt"> <?php the_post_thumbnail('grande'); ?> <a href="<?php the_permalink() ?>"><?php the_content_limit(100, 'Leia mais...');?></p></a> </div> </div> </div> <div class="editar"> <?php edit_post_link('X'); ?> </div> <!-- FIM postagem grande --> <!--navegação--> <br> <?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?> <br> <div class="anuncio-g"> <script type="text/javascript"><!-- google_ad_client = "ca-pub-8925619547940062"; /* 728x90 */ google_ad_slot = "4407743094"; google_ad_width = 728; google_ad_height = 90; //--> </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script> </div> </div> <?php get_footer(); ?>
desde já agradeço a ajuda…
- O tópico ‘Postagens diferentes na index’ está fechado para novas respostas.