CodeHQ

Archive for July, 2015

|

Adding a back to parent item link | WordPress

Thursday, July 30th, 2015

<?php
$this_page = get_post($id);
$parent_id = $this_page->post_parent;
if ($parent_id) {
	$parent = get_page($parent_id);
	echo '';
}
?>

Tags: , , ,
Posted in PHP, WordPress | No Comments »

Display only child posts of parent | WordPress Query

Monday, July 27th, 2015

$args = array(
	'post_type' => 'page',
	'post_parent' => $post->ID,
);

Tags: , , , ,
Posted in PHP, WordPress | No Comments »