@mercime. Thanks!
Okay, that referenced information is what I stared at for a long time (I’m really new at this…) and the following is what I came up with:
function bp_dtheme_enqueue_styles() {
// Bump this when changes are made to bust cache
$version = '20110804';
// Default CSS
wp_enqueue_style( 'bp-default-main', get_template_directory_uri() . '/_inc/css/default.css', array(), $version );
wp_enqueue_style( 'bp-child-style', get_stylesheet_directory_uri() . '/style.css', array(), $version );
// Right to left CSS
if ( is_rtl() )
wp_enqueue_style( 'bp-default-main-rtl', get_template_directory_uri() . '/_inc/css/default-rtl.css', array( 'bp-default-main' ), $version );
}
add_action( 'wp_print_styles', 'bp_dtheme_enqueue_styles' );
You may notice that in the second enqueue statement, I used get_stylesheet_directory_uri() to pull the child’s directory. Is that correct? No where in the referenced information does it use that function, only get_template_directory_uri() which presumably pulls the parent directory. Given that the directory function I used was not in the referenced information, I wonder if there is alternative, straightforward way that a seasoned developer would use.