Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@ivandoric
Created April 23, 2014 13:43
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 ivandoric/11215689 to your computer and use it in GitHub Desktop.
Save ivandoric/11215689 to your computer and use it in GitHub Desktop.
wordpress: Title for custom Wordpress pages, that have special loops on them
<?php
$post_id = $wp_query->post->ID; // get post ID
?>
<h2><?php echo get_the_title($post_id); ?></h2>
/* If using WPML for translation then */
<h2><?php echo get_the_title(icl_object_id($post_id, 'page', false)); ?></h2>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment