how to save redux state and show it as a table code example
Example 1: in which table our redux option values are save
<?php
if(get_option('redux_demo[10]') === 1) { ?>
<h1>Text</h1>
<?php
}?>
Example 2: in which table our redux option values are save
<?php
if(get_option('redux_demo[10]')) { ?>
<h1>Text</h1>
<?php
}?>