why my WordPress theme doesn’t support shortcode? [closed]

You should add to theme something like this:

add_filter('shortcode_function_name', 'do_shortcode');

This should be enough.
Here you can find the documentation related to the shortcodes:

https://developer.wordpress.org/reference/functions/do_shortcode/