0
I have created a custom page in the wordpress "admin" that has a text field and a upload button. I need to figure out how to send the page to be saved, but I can’t find anything on the web. Someone knows the 'action' needs to be in the form to be able to do this function?
add_action('admin_menu', 'my_menu_pages');
function my_menu_pages(){
add_menu_page('My Page Title', 'Popup Segmentado', 'manage_options', 'popup-segmentado', 'fomulario_padrao', $icon_url = 'dashicons-forms', $position = null );
}
function fomulario_padrao(){
echo '<div class="_pop-gif" style="margin-left:20px;width:45%;">
<form name="post" action="post.php" method="post" id="post">
<p>
<label for="nome_produto_popup">Nome do Produto</label>
<input type="text" name="nome_produto_popup" id="nome_produto_popup" value="'.$values["nome_padrao_popup"][0].'" style="width:100%;"/>
</p>
<p>
<label for="preco_produto_popup">Preço do Produto</label>
<input type="text" name="preco_produto_popup" id="preco_produto_popup" value="'.$values["preco_padrao_popup"][0].'" style="width:100%;"/>
</p>
<p>
<label for="imagem_produto_popup">Imagem do Produto</label>
<input type="text" name="imagem_produto_popup" id="imagem_produto_popup" value="'.$values["imagem_padrao_popup"][0].'" style="width:100%;"/>
</p>
<p>
<label for="imagem_produto_popup">Link do Produto</label>
<input type="text" name="imagem_produto_popup" id="imagem_produto_popup" value="'.$values["link_padrao_popup"][0].'" style="width:100%;"/>
</p>
<p>
'.submit_button().'
</p>
</form>
</div>';
}
I didn’t understand how so "send the page to be saved"? You want when you click Send the guy save the page.php on the disk?
– hugocsl
No, it would be to save the form inside a database or something like that.
– Léo Cunha