2016-01-20, 01:00:08
Install my component hook plugin
create component called
add this to it
Done
create component called
hook_content-bottom
add this to it
PHP Code:
<?php
// component hook_content-bottom
GLOBAL $id,$url,$GSADMIN;
if($url == '404' && $id != $url && is_logged_in()){
echo '<a href="'.get_site_url(false) . $GSADMIN . '/edit.php?title=' . _id($id) . '">Create Page</a>';
}
?>
Done