Skip to content

Instantly share code, notes, and snippets.

@bytefade
Created August 1, 2014 01:20
Show Gist options
  • Save bytefade/32f8515421fd7d20e8a4 to your computer and use it in GitHub Desktop.
Save bytefade/32f8515421fd7d20e8a4 to your computer and use it in GitHub Desktop.
Wordpress. Agora na sua página, adicione um campo customizado com o nome de ‘category’, e o valor sendo o slug da categoria.
<?
the_post();
$keys = get_post_custom_keys();
if(in_array("category",$keys)) {
$categoryslug = get_post_custom_values("category");
query_posts('category_name='.$categoryslug[0]);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment