Changeset 851884
- Timestamp:
- 02/05/2014 11:36:46 AM (12 years ago)
- Location:
- point-and-stare-cms-functions/trunk
- Files:
-
- 2 edited
-
pands-functions.php (modified) (3 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
point-and-stare-cms-functions/trunk/pands-functions.php
r843086 r851884 4 4 Plugin URI: http://wordpress.org/extend/plugins/point-and-stare-cms-functions/ 5 5 Description: This plugin will generate special functions that help convert your WordPress install into a white labelled CMS, add security and generally protect the admin. 6 Version: 3.0. 26 Version: 3.0.3 7 7 Author: Lee Rickler 8 8 Author URI: http://pointandstare.com … … 119 119 <td><?php _e('Don\'t like \'Howdy\'?', 'pands'); ?> <small><?php _e('(top right)</small>', 'pands'); ?><br /><span class="th-small"><?php _e('Change it to something more \'local\'', 'pands'); ?>.</span></td> 120 120 <td><input class="ui-widget-text" name="pands_script_plugin_options[change_howdy]" type="text" value="<?php echo $options['change_howdy']; ?>" /></td> 121 </tr>122 <tr>123 <td><?php _e('Change admin background colour by adding the hex ref - example ff0000.', 'pands'); ?></span></td>124 <td><input class="ui-widget-text" name="pands_script_plugin_options[custom_bg]" type="text" value="<?php echo $options['custom_bg']; ?>" /></td>125 121 </tr> 126 122 </table> … … 646 642 647 643 add_action('admin_head', 'pands_custom_admin_logo'); 648 649 // CUSTOM ADMIN FONT AND SIZE650 function pands_custom_admin_font() {651 $options = get_option('pands_script_plugin_options');652 if ($options['custom_bg'] == "") {653 echo '';654 } else {655 echo '<style>656 body {657 background: #' . $options['custom_bg'] . '!important;658 659 }660 </style>';661 }662 }663 664 add_action('admin_head', 'pands_custom_admin_font');665 666 644 667 645 // HIDE REVISIONS -
point-and-stare-cms-functions/trunk/readme.txt
r843088 r851884 51 51 52 52 == Changelog == 53 54 = v3.0.3 = 55 * Removed admin font change as it was conflicting and ugly. 53 56 54 57 = v3.0.2 =
Note: See TracChangeset
for help on using the changeset viewer.