• File: configure.php
  • Full Path: /home/chassiw/www/custom-twitter-feeds/views/admin/configure.php
  • File size: 867 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php
settings_errors(); ?>
<form method="post" action="options.php">
    <input type="hidden" name="ctf_options[tab]" value="configure" />
    <?php settings_fields('ctf_options'); // matches the options name ?>
    <?php do_settings_sections('ctf_options_connect'); // matches the section name ?>
    <p class="submit"><input class="button-primary" type="submit" name="save" value="<?php esc_attr_e( 'Save Changes' ); ?>" /></p>
    <hr>
    <?php do_settings_sections('ctf_options_feed_settings'); // matches the section name ?>
    <p class="submit"><input class="button-primary" type="submit" name="save" value="<?php esc_attr_e( 'Save Changes' ); ?>" /></p>
</form>
<p><span class="fa fa-chevron-circle-right" aria-hidden="true"></span>&nbsp; <?php _e('Next Step: <a href="?page=custom-twitter-feeds&tab=customize">Customize your Feed</a>'); ?></p>