// Automatically display flight map below title if shortcode is not present function flightmap_auto_insert($content) { if (is_single() && in_the_loop() && is_main_query()) { global $post; if (strpos($content, '[flightmap') === false) { $map_shortcode = do_shortcode('[flightmap]'); $content = $map_shortcode . $content; } } return $content; } add_filter('the_content', 'flightmap_auto_insert');