Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter christian0710

    (@christian0710)

    UPDATE: Got it to work; added this to functions.php

    <?php
    function my_theme_enqueue_styles() {

    $parent_style = ‘parent-style’; // This is ‘twentyfifteen-style’ for the Twenty Fifteen theme.

    wp_enqueue_style( $parent_style, get_template_directory_uri() . ‘/style.css’ );
    wp_enqueue_style( ‘child-style’,
    get_stylesheet_directory_uri() . ‘/style.css’,
    array( $parent_style ),
    wp_get_theme()->get(‘Version’)
    );
    }
    add_action( ‘wp_enqueue_scripts’, ‘my_theme_enqueue_styles’ );
    ?>

    Thread Starter christian0710

    (@christian0710)

    Would that effects google index/ranking? Does google prefer posts over pages? The structure will be just if I had posts with categories because The PAGES are in hierarchy (3 levels) so the slug name will still be /grammar/verbs/past-tense

    Thread Starter christian0710

    (@christian0710)

    Hi Sidati, can you decide which pages different posts land on with custom post types? I was wondering if i should just turn everything into pages (like 150 pages total) and then have a blog for weekly grammar tips. Because All the grammar is pretty much static content (it’s there so people can access and index it for years). guess arranging it all into PAges –> sub-pages –> sub-sub-pages will still create good linking structure if i give it meaningful slug names?

Viewing 3 replies - 1 through 3 (of 3 total)