/**
* Enqueues the giveaway script and localizes the post ID for a child theme.
*/
function child_theme_enqueue_giveaway_script() {
// Check if we are on a single post and the URL contains ‘/giveaways/’
if (is_singular() && strpos($_SERVER[‘REQUEST_URI’], ‘/giveaways/’) !== false) {
// Use get_stylesheet_directory_uri() to point to the child theme’s folder.
wp_enqueue_script(
‘giveaway-logic’,
get_stylesheet_directory_uri() . ‘/js/giveaway-logic.js’, // Correct path for child theme
array(),
‘1.0.3’,
true
);
// This part remains the same.
wp_localize_script(
‘giveaway-logic’,
‘giveaway_data’,
array(
‘post_id’ => get_the_ID()
)
);
}
}
add_action(‘wp_enqueue_scripts’, ‘child_theme_enqueue_giveaway_script’);