User Defined Container Class if (get_option('job_board_container_class')) { $container_class = get_option('job_board_container_class'); $container_class = str_replace(',', ' ', $container_class); } else { $container_class = 'container sjb-container'; } // Get Container Id if (get_option('job_board_container_id')) { $container_ids = explode( " ", get_option('job_board_container_id')); $container_id = $container_ids[0]; } else { $container_id = 'container'; } switch ($template) { case 'twentyeleven' : echo '
'; break; case 'twentytwelve' : echo '
'; break; case 'twentythirteen' : echo '
'; break; case 'twentyfourteen' : echo '
'; break; case 'twentyfifteen' : echo '
'; break; case 'twentysixteen' : echo '
'; break; default : echo '
'; break; } $html_wrapper_start = ob_get_clean(); /** * Modify the Content Wrapper Start Template. * * @since 2.3.0 * * @param html $html_wrapper_start Content Wrapper Start HTML. */ echo apply_filters('sjb_content_wrapper_start_template', $html_wrapper_start);