I am learning how to develop WordPress plugins from this tutorial series and now I am on this tutorial , but I found a strange thing: there is used two RadioButtones to get values "True" or "False" where they could use one CheckBox
<label for="devloungeHeader_yes">
<input type="radio" id="devloungeHeader_yes" name="devloungeHeader" value="true" <?php if ($devOptions['show_header'] == "true") { _e('checked="checked"', "DevloungePluginSeries"); }?> />
Yes
</label>
<label for="devloungeHeader_no">
<input type="radio" id="devloungeHeader_no" name="devloungeHeader" value="false" <?php if ($devOptions['show_header'] == "false") { _e('checked="checked"', "DevloungePluginSeries"); }?>/>
No
</label>
I saw something similar on joomla admin page, where there was used 2 radio buttons to get the same result.
So, is there any (html, css, javascript, php, just any) advantage of using two radio buttons instead of one checkbox?