Pesquisa MySql não retorna post's em categorias com acentos
-
Olá pessoal,
Estou com um problema na questão de query_post em um tema do wordpress, onde quando determino qual a categoria que desejo que apareça na página inicial do site e a mesma contém acento, não retorna nenhuma postagem da categoria, fica em branco, veja abaixo o código que está buscando as postagens das categorias.
<?php get_header(); ?>
<?php $cat_tab_1 = get_option(‘lp_tab_cat_1’); ?>
<?php $cat_tab_2 = get_option(‘lp_tab_cat_2’); ?>
<?php $cat_tab_3 = get_option(‘lp_tab_cat_3’); ?>
<?php $post_number = get_option(‘lp_post_num’); ?>
<div id=”content”>
<?php if ( get_option(‘lp_latest_posts’) != ‘true’ ) { ?><ul class=”tabs”>
- <?php echo $cat_tab_1 ?>
- <?php echo $cat_tab_2 ?>
- <?php echo $cat_tab_3 ?>
-
<div class=”date left”><?php the_time(‘M j’); ?></div>
<h4 class=”post-title event-post left”>“><?php the_title(); ?></h4>
<div class=”clear”></div>
-
<div class=”date left”><?php the_time(‘M j’); ?></div>
<h4 class=”post-title event-post left”>“><?php the_title(); ?></h4>
<div class=”clear”></div>
-
<div class=”date left”><?php the_time(‘M j’); ?></div>
<h4 class=”post-title event-post left”>“><?php the_title(); ?></h4>
<div class=”clear”></div>
<!– tab-container –>
<div class=”tab_container”>
<!– tab-content begin –>
<div id=”tab1″ class=”tab_content”>
<?php query_posts(“category_name=$cat_tab_1&showposts=12”); ?>
<?php while (have_posts()) : the_post(); ?>
<ul class=”tab-post”>
<?php endwhile;?>
</div>
<div id=”tab2″ class=”tab_content”>
<?php query_posts(“category_name=$cat_tab_2&showposts=12”); ?>
<?php while (have_posts()) : the_post(); ?>
<ul class=”tab-post”>
<?php endwhile;?>
</div>
<div id=”tab3″ class=”tab_content”>
<?php query_posts(“category_name=$cat_tab_3&showposts=12”); ?>
<?php while (have_posts()) : the_post(); ?>
<ul class=”tab-post”>
<?php endwhile;?>
</div>
<!– tab-content end –>
</div>
<?php } else { ?>
<div id=”main-content”>
<?php query_posts(“showposts=$post_number”); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class=”post”>
<h2 class=”line”>” rel=”bookmark” title=”Permanent Link to <?php the_title_attribute(); ?>”><?php the_title(); ?></h2>
<?php the_post_thumbnail(); ?>
<?php the_excerpt(); ?>
<p class=”meta”><?php the_time(‘F j, Y’); ?> in <?php the_category(‘, ‘); ?> by <?php the_author_posts_link() ?></p>
<p class=”meta”><?php comments_popup_link(‘No comments yet’, ‘1 comment’, ‘% comments’, ”, ‘Comments are disabled for this post’); ?></p>
</div>
<!–/box–>
<?php endwhile; else: ?>
<h2>404 – Not Found</h2>
<p>The page you are looking for is not here.</p>
<?php endif; ?>
</div>
<?php } ?>
</div>
<div id=”content-right”><?php get_sidebar(‘home’); ?></div>
</div>
Será que alguém poderia me ajudar?
- O tópico ‘Pesquisa MySql não retorna post's em categorias com acentos’ está fechado para novas respostas.