Submit post and upload image from front-end

I am trying to do something similar to the above question. I am trying to make users post and upload images from front-end. I have already done the post form and its working. I just followed and tried the answer posted by Robin I Knight upload-post-thumbnail-from-the-front-end. Sadly i couldn’t get it to work. Is there … Read more

How do I include a TinyMCE editor in the frontend?

I am trying to add a TinyMCE editor in my frontend from where users can post but have had no luck so far. Here is the code: PHP: add_action(‘wp_print_scripts’, ‘my_enqueue_scripts’); function my_enqueue_scripts() { wp_enqueue_script( ‘tiny_mce’ ); if (function_exists(‘wp_tiny_mce’)) wp_tiny_mce(); } Javascript: jQuery(document).ready(function(){ tinyMCE.init({ mode : “textareas”, theme : “simple”, /*plugins : “autolink, lists, spellchecker, style, … Read more

How to display user registration form on front-end of the website?

Want to improve this post? Provide detailed answers to this question, including citations and an explanation of why your answer is correct. without enough detail may be edited or deleted. How to display the WordPress user registration form (the form that appears in “www.mywebsite.com/wp-register.php” page) in the front end of my blog? I have customised … Read more