2012-06-26, 00:20:21
If all you require is an extra field to type notes into for the admin(s), you can use the I18N Custom Fields plugin to achieve this. Simply install that plugin and create a new custom field called "admin-notes".
You could even add this custom field to your template so the admin(s) can see the page notes in the front-end too:
(I think that code is correct, you might want to wait for someone to confirm). Add a little extra CSS and you're sorted:
You could even add this custom field to your template so the admin(s) can see the page notes in the front-end too:
Code:
<?php if (cookie_check()=='1') {
echo '<div id="admin-notes">'.return_custom_field('admin-notes').'</div>';
} ?>
(I think that code is correct, you might want to wait for someone to confirm). Add a little extra CSS and you're sorted:
Code:
#admin-notes { top:0; left:0; color:#fff; width:0; height:0; padding:0; overflow:hidden; position:absolute; background:#333; background:rgba(0,0,0,.8); border:5px solid #393; -webkit-transition:.5s .5s; transition:.5s .5s; }
#admin-notes:hover { width:18em; height:20em; padding:1em; overflow:auto; }