christian0710
Forum Replies Created
-
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’ );
?>Forum: Fixing WordPress
In reply to: grammar website: The smartest structure (categories, links etc?)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
Forum: Fixing WordPress
In reply to: grammar website: The smartest structure (categories, links etc?)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?