Hi Review Team,<br><br>I have question about the backward compatibility of add_theme_support as this is shown required by Theme Check plugin. The message is as "<span class="tc-lead tc-required">REQUIRED</span>: <strong>add_theme_support( custom-background )</strong> was found in the file <strong>functions.php</strong>. Use <strong>add_custom_background()</strong> instead."<br>
<br>See my code below:<br> // Add support for custom backgrounds <br> // WordPress 3.4+<br> if ( function_exists( 'get_custom_header') ) {<br> add_theme_support( 'custom-background' );<br>
} else {<br> // Backward Compatibility<br> <br> /**<br> * This feature allows users to use custom background for a theme.<br> * @see <a href="http://codex.wordpress.org/Function_Reference/add_custom_background">http://codex.wordpress.org/Function_Reference/add_custom_background</a><br>
*/ <br> add_custom_background();<br> }<br> <br clear="all"><br>-- <br>Regards,<br>Sakin <br>