inkthemes_optionsframework_admin_head
The Black Rider Lite Responsive Theme inkthemes optionsframework admin head function.
Description
inkthemes_optionsframework_admin_head();
Usage
if ( !function_exists( 'inkthemes_optionsframework_admin_head' ) ) { require_once '/functions/admin-functions.php'; } // NOTICE! Understand what this does before running. $result = inkthemes_optionsframework_admin_head();
Defined (1)
The function is defined in the following location(s).
- /functions/admin-functions.php
- function inkthemes_optionsframework_admin_head() {
- //Tweaked the message on theme activate
- ?>
- <script type="text/javascript">
- jQuery(function() {
- var message = '<p>This theme comes with an <a href="<?php echo admin_url('admin.php?page=optionsframework'); ?>">options panel</a> to configure settings. This theme also supports widgets, please visit the <a href="<?php echo admin_url('widgets.php'); ?>">widgets settings page</a> to configure them.</p>';
- jQuery('.themes-php #message2').html(message);
- });
- </script>
- <?php
- }