My shortcode does not call the function
Please replace the old code with below code it will show you that it’s working add_shortcode( ‘bg_recent_post_grid’, ‘bg_recent_post_grid_shortcode’ ); function bg_recent_post_grid_shortcode( $atts ) { // Attributes $atts = shortcode_atts( array( ‘category_name’ => ‘uncategorized’, ‘number_posts’ => ‘1’, ), $atts ); return bg_make_post_grid ( $atts[‘number_posts’], $atts[‘category_name’] ); } function bg_make_post_grid ( $number_posts, $category_name ) { $args = … Read more