Hi,
I have the following test code as a plugin (i have excluded the template for the plugin to enhance readability)
add_action('edit-content','show_test');
<?php
function show_test() {
echo 'this is a test string this is a test string';
}
?>
How ever its is not being displayed as expected under the text area in the edit.php section of the admin site, any ideas?
I have the following test code as a plugin (i have excluded the template for the plugin to enhance readability)
add_action('edit-content','show_test');
<?php
function show_test() {
echo 'this is a test string this is a test string';
}
?>
How ever its is not being displayed as expected under the text area in the edit.php section of the admin site, any ideas?