Enrich Your WordPress Knowledge Regularly

Show the Guest Name & Email field bottom of the WPUF form
Suppose you are using the WPUF plugin for the guest post submission. You will notice the name and email will appear top of the form. This code snippet will help you to move the bottom of the form.
/**
@ Show Guest name & email field bottom of the form
**/
jQuery(document).ready(function( $ ) {
$(".el-name, .el-email").each(function() {
$(this).parent().append(this);
});
$(".wpuf-submit").each(function() {
$(this).parent().append(this);
});
});
Note: You need to use a third-party plugin like “Code Snippets” to utilize the JS/JQuery code.