I have pretty much no programming experience but I'm trying :) So I wanted to add a form for users to fill out in the admin section vs. on the front page. I was trying this little code but its not working. I got form id 1 to show up, but it was trying to make it an editable form. I want this to be the final form that shows up. Is this possible?
This is something I made for the functions.php file in the theme.
function jobform_add_pages() {
add_menu_page('admin-menu', 'Post A Job', 5, __FILE__, 'jobform_toplevel_page');
}
function jobform_toplevel_page() {
gravity_form(4, false, false, false, '', false);
}
add_action('admin_menu', 'jobform_add_pages');