Skip to content

Instantly share code, notes, and snippets.

@sdeluce
Created January 16, 2015 17:05
Show Gist options
  • Select an option

  • Save sdeluce/620826e085128bd60c4a to your computer and use it in GitHub Desktop.

Select an option

Save sdeluce/620826e085128bd60c4a to your computer and use it in GitHub Desktop.
Afficher l'ID d'un post ou d'une page hors de la boucle Wordpress
<?php
global $wp_query;
$postid = $wp_query->post->ID;
echo get_post_meta($postid, 'Your-Custom-Field', true);
wp_reset_query();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment