PluginProbe
Post Snippets – Custom WordPress Code Snippets Customizer / 4.2.2
Post Snippets – Custom WordPress Code Snippets Customizer v4.2.2
4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.1 1.7.2 1.7.3 1.8 1.8.1 1.8.2 1.8.3 1.8.5 1.8.6 1.8.7 1.8.8 1.8.9 1.8.9.1 1.8.9.2 1.9 1.9.1 1.9.2 1.9.3 1.9.4 1.9.5 All 115 releases
post-snippets / views / admin_options.php

admin_options.php in Post Snippets – Custom WordPress Code Snippets Customizer 4.2.2, at views/admin_options.php

12 lines 227 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if ( ! defined( 'ABSPATH' ) ) exit;
3 ?>
4
5 <form method="post" action="options.php">
6 <?php
7 settings_fields(\PostSnippets::SETTINGS);
8 do_settings_sections('post-snippets');
9 submit_button();
10 ?>
11 </form>
12