fabioanesio 0 Denunciar post Postado Janeiro 29, 2011 Fala galera não sei como vou postar minha duvida mais vamos ver oq sair.. rsrs è assim quando eu postor um conteudo de tipo Video que é feito em html na pagina inicial mostra certo. Mais na parte da cantegoria não mostra, isso vale para imagem tambem. Abraços Compartilhar este post Link para o post Compartilhar em outros sites
Anderson Narciso 3 Denunciar post Postado Janeiro 30, 2011 Mostra.. Tem algum link? Tem uma pasta cache com permissões 777 dentro da wp-content? Compartilhar este post Link para o post Compartilhar em outros sites
fabioanesio 0 Denunciar post Postado Janeiro 30, 2011 Fala carinha não tenho link. Mais tenho imagens :P Imagem 01 seria a index do site A imagem 02 seria na pagina de categoria. Na parte da categoria não mostra o video e nem uma imagem. Compartilhar este post Link para o post Compartilhar em outros sites
Anderson Narciso 3 Denunciar post Postado Janeiro 30, 2011 Não mostra porque não é um loop para msotrar conteúdo completo, é uma página de arquivos e não uma de categorias. Procure nos arquivos do seu tema o archives.php, verifique como está o loop (geralmetne do have_posts até o endif) Cole ele aqui para darmos uma conferida. Compartilhar este post Link para o post Compartilhar em outros sites
fabioanesio 0 Denunciar post Postado Janeiro 30, 2011 Esse é tudo que tenho na pagina archives.php <?php get_header(); ?> <div class="page_archives_div"> <div class="ar_panel"> <h2><span>Archives By Category:</span></h2> <ul> <?php wp_list_categories('title_li='); ?> </ul> </div> <div class="ar_panel ar_panel2"> <h2><span>Archives By Month:</span></h2> <ul class="dark"> <?php wp_get_archives('type=monthly'); ?> </ul> </div> </div> <?php get_footer(); ?> TEnho outro arquivo com o nome archive.php Nessa pagina tem isso (nem vou por toda a pagina pq é grande) <?php if (have_posts()) : ?> <?php $i=0; while (have_posts()) : the_post(); $i++; ?> <div class="post" id="post-<?php the_ID(); ?>"> <div class="post-top"> <div class="post-title"> <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php if ( function_exists('the_title_attribute')) the_title_attribute(); else the_title(); ?>"><?php the_title(); ?></a></h2> <h3> Posted by <span><?php the_author() ?></span> | Posted in <span><?php the_category(', ') ?></span> | Posted on <?php the_time('d-m-Y') ?> </h3> </div> <h4><?php comments_number('0', '1', '%'); ?></h4> </div> <div class="entry"> <?php if($i==1 || $i==2) : ?> <?php theme_google_468_ads_show(); ?> <? endif; ?> Compartilhar este post Link para o post Compartilhar em outros sites
Anderson Narciso 3 Denunciar post Postado Fevereiro 2, 2011 Aqui cara oh <?php if (have_posts()) : ?> <?php $i=0; while (have_posts()) : the_post(); $i++; ?> <div class="post" id="post-<?php the_ID(); ?>"> <div class="post-top"> <div class="post-title"> <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php if ( function_exists('the_title_attribute')) the_title_attribute(); else the_title(); ?>"><?php the_title(); ?></a></h2> <h3> Posted by <span><?php the_author() ?></span> | Posted in <span><?php the_category(', ') ?></span> | Posted on <?php the_time('d-m-Y') ?> </h3> </div> <h4><?php comments_number('0', '1', '%'); ?></h4> </div> <div id="conteudo"> <?php the_content() ?> <!-- COLOCANDO O THE CONTENT DENTRO DO LOOP ELE VAI PUXAR O VIDEO TAMBÉM, CASO ELE ESTEJA NO COMEÇO DO POST É CLARO --> <!-- VOCÊ PODE LIMITAR COLOCANDO A TAG MORE DEPOIS DO VIDEO --> <div> <div class="entry"> <?php if($i==1 || $i==2) : ?> <?php theme_google_468_ads_show(); ?> <? endif; ?> Compartilhar este post Link para o post Compartilhar em outros sites
fabioanesio 0 Denunciar post Postado Fevereiro 2, 2011 Vlw carinha me ajudou muito :) Compartilhar este post Link para o post Compartilhar em outros sites