Creating short code for search form
You are returning the shortcode content as a big string, your function get_job_listing_categories is not properly being called. Also i would recommend use PHP output buffering which is great for WordPress shortcodes. Try below code: function jobsform_function($atts) { ob_start(); ?> <form class=”home-job-search” method=”GET” action=”https://website.com/jobs/jobs/”> <div class=”home-keywords”> <input type=”text” id=”search_keywords” name=”search_keywords” placeholder=”Enter Keywords” /> </div> <div … Read more