Skip to content

Instantly share code, notes, and snippets.

@DavidPeralvarez
Last active May 29, 2018 09:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DavidPeralvarez/a124117dfca4114e8686416c4f5ea045 to your computer and use it in GitHub Desktop.
Save DavidPeralvarez/a124117dfca4114e8686416c4f5ea045 to your computer and use it in GitHub Desktop.
Mostrar Post Formats dentro del Loop de WordPress
<?php
if ( have_posts() ):
while ( have_posts() ): the_post();
//Mostramos el "slug" del formato de post
echo get_post_format();
endwhile;
endif;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment