Viewing 5 replies - 1 through 5 (of 5 total)
  • IT4Worship

    (@it4worship)

    Hi Kyle, are you enqueuing in a child functions.php file or @importing the parent theme at the beginning of your child style.css file?

    Thread Starter kyleform

    (@kyleform)

    Then just calling it the styles, jquery & wp_head as i usually do:

    <?php wp_enqueue_script(‘jquery’); ?>
    <?php wp_head(); ?>

    <!– Stylesheets –>
    <link href=”<?php bloginfo(‘stylesheet_url’); ?>” rel=”stylesheet”>

    Thats all iv got in the functions.php

    <?php
    
    // Enable support for post-thumbnails
    add_theme_support('post-thumbnails');  
    
    // If we want to ensure that we only call this function if
    // the user is working with WP 2.9 or higher,
    // let's instead make sure that the function exists first  
    
    if ( function_exists('add_theme_support') ) {
    add_theme_support('post-thumbnails');
    } 
    
    // Enable second sidebar
    if(function_exists('register_sidebar')) :
    register_sidebars();
    endif;
    
    // Register Custom Navigation Walker
    require_once('wp_bootstrap_navwalker.php');
    
    // Enable menu  
    
    function register_my_menus() {
      register_nav_menus(
        array(
          'primary-menu' => __( 'Primary Menu' ),
        )
      );
    }
    add_action( 'init', 'register_my_menus' );
    
    ?>
    IT4Worship

    (@it4worship)

    I’m afraid I can’t shed any light on this. Sorry.

    Thread Starter kyleform

    (@kyleform)

    no problem, getting someone from odesk to take a look. thanks for looking anyway, much appreciated!

    IT4Worship

    (@it4worship)

    Ok, good luck!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Child Pages Not working – Displaying Blank’ is closed to new replies.