• Resolved hrpilz

    (@hrpilz)


    I need some help. I have created a website/blog based on Pilcrow and need to change the default page name. I think based on other forum posts, I need to change the header.php cod here, but not sure what I should change it too. I’d like to allow the page title itself to be the “home” title instead of having “home” overwrite the title.

    Anyhelp gratefully appreciated. Website at blueprintboutique.com
    // Add the blog description for the home/front page.
    $site_description = get_bloginfo( ‘description’, ‘display’ );
    if ( $site_description && ( is_home() || is_front_page() ) )
    echo ” | $site_description”;

Viewing 1 replies (of 1 total)
  • After hours of searching…finally!!! You need to go to themes > Pilcrow > functions.php, and change the following:

    function pilcrow_page_menu_args( $args ) {
    	$args['show_home'] = true; CHANGE TO FALSE
    	$args['depth'] = 1;
    	return $args;

    You can check it out on my site http://www.callansweringuk.co.uk where my home page is now titled correctly 🙂

    [Please post code snippets between backticks or use the code button.]

Viewing 1 replies (of 1 total)
  • The topic ‘Change the default home page name using Pilcrow theme’ is closed to new replies.