version : 1.0 1) Launched this version version: 1.1 1) fixed error 2) Included cdn libery file in theme version: 1.2 1) Use the theme customizer for implementing theme options. 2) fixed errors in responsive. version: 1.3 1) fixed post page version: 1.4 Issues 1) REQUIRED: Provide a unique prefix for everything the Theme defines in the public namespace, including options, functions, global variables, constants, post meta, etc. http://themereview.co/prefix-all-the-things/ Reply: This issue has been resolved 2) REQUIRED: All theme text strings are to be translatable. https://make.wordpress.org/themes/handbook/review/required/#language Reply: This issue has been resolved 3) REQUIRED: Please remove inline styling. Reply: This issue has been resolved 4) All scripts, stylesheets, Google Fonts, etc should be enqueued properly. https://make.wordpress.org/themes/handbook/review/required/#stylesheets-and-scripts Reply: This issue has been resolved 5) REQUIRED: Required to use core-bundled scripts rather than including their own version of that script. For example jQuery. Reply: This issue has been resolved 6) REQUIRED: No minified files unless unminified version is also provided. Eg, if you are using bootstrap.min.css then you should also keep bootstrap.css. Reply: This issue has been resolved 7) REQUIRED: Demo content used in several places. Please remove those. Fields should be empty unless user enters data. Reply: This issue has been resolved 8) REQUIRED: In Customizer, Display Site Title and Tagline is not working. Reply: This issue has been resolved 9) REQUIRED: Please implement proper sanitization for values when saved to database. https://codex.wordpress.org/Data_Validation#Input_Validation Eg, sanitize_text_field() should be used to sanitize text field, esc_url_raw for URL field, for sanitizing field with HTML tags, use wp_kses_post() for sanitization, use absint() to sanitize positive integer. Reply: This issue has been resolved 10) REQUIRED: All untrusted data should be escaped properly before displaying. https://codex.wordpress.org/Data_Validation Eg, esc_url() should be used to escape URL, value in HTML attributes should be escaped with esc_attr(). Inside HTML content, esc_html() should be used. Reply: This issue has been resolved 11) RECOMMENDED: Third party script and style handle should not be prefixed. See https://make.wordpress.org/themes/handbook/review/recommended/#stylesheets-and-scripts Reply: This issue has been resolved 12) REQUIRED: There should not be menu parameter in wp_nav_menu() call. Use theme_location parameter. Reply: This issue has been resolved 13) REQUIRED: Please implement add_editor_style() properly. https://developer.wordpress.org/reference/functions/add_editor_style/ If you dont want to implement, please remove it. Reply: This issue has been resolved 14) REQUIRED: Please use get_template_directory() to load non template PHP files. Reply: This issue has been resolved 15) REQUIRED: Remove sticky-post theme tag if you dont want to implement. https://make.wordpress.org/themes/handbook/review/required/theme-tags/ Reply: This issue has been resolved 16) REQUIRED: Escape home_url() with esc_url(). Reply: This issue has been resolved 17) REQUIRED: Static value inside HTML attributes like placeholder, title, etc should be translatable and escaped. Please check thoroughly. Reply: This issue has been resolved