Changeset 1858234
- Timestamp:
- 04/14/2018 07:47:48 AM (8 years ago)
- File:
-
- 1 edited
-
admin-notebook/trunk/admin-notebook.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
admin-notebook/trunk/admin-notebook.php
r1851227 r1858234 7 7 License: GPLv3 8 8 */ 9 10 9 add_action ( 'admin_head', "anwp_AdminNotebook" , "1" ); 11 10 add_action ( 'wp_head', "anwp_AdminNotebook" , "1" ); … … 16 15 17 16 function anwp_AdminNotebook(){ 18 19 17 if ( ! is_admin() ) { 20 18 $view_flag = "1"; … … 36 34 function anwpNotebook(){ 37 35 ?> 38 39 36 <div id="notebook"> 40 37 <div id="notebookheader">Click here to move</div> 41 38 <textarea name="notebook_entry" id="notebook_entry" class="notebook_entry" onchange="update_notebook();" ><?php echo get_option( 'notebook_entry_'.get_current_user_id(), "Write Something here..."); ?></textarea> 42 39 </div> 43 44 40 <?php 45 41 }
Note: See TracChangeset
for help on using the changeset viewer.