Forum Replies Created
-
In reply to: I don't want to display subpages excerpt on parent page…
March 16, 2011 at 12:32 am #12841Hi, I am new with WordPress and the wounderful graphene theme. The support is very helpful and kind!
My first question:
Is it possible to sort a drop down menu from the parent page shown in the navigation bar? Like this:
parent
child 1
child 2
child …
in the child page?
The functions.php (see above) for the child theme works fine, but it shows the main navigation:
parent parent … parent
function graphene_child_pages_order(){
$args = array(
'child_of' => $post->ID,
'sort_column' => 'menu_order',
'hierarchical' => 0,
'parent' => $post->ID,
'post_type' => 'page',
'post_status' => 'publish'
);
return $args;
}
add_filter('graphene_child_pages_args', 'graphene_child_pages_order');My second question:
The excerpt lost all <p> and styles. Is it possible to change this?
Many thanks for your support!
Viewing 1 post (of 1 total)
