Answers for "wordpress make new publish button"

PHP
0

wordpress make new publish button

echo('<button type="submit">Your Text</button>');
/*
should about do it for you...it's just a submit button, nothing
special. It's generated by post_submit_meta_box(), specifically
submit_button( __( 'Publish' ), 'primary', 'publish', false,
array( 'tabindex' => '5', 'accesskey' => 'p' ) );.
*/
Posted by: Guest on May-12-2021

Browse Popular Code Answers by Language