Posts, pages and some images are deleted sometimes

Perhaps your site keeps getting hacked, if the posts and pages are in the trash every now and then? Have your tried changing the passwords for every user, database password, ftp credentials, WP salts and such? You could try installing WP Security Audit Log plugin (not affiliated) from the WordPress plugin repo for tracking all … Read more

PHP Error in WordPress Theme

Replcace this function start_el(&$output, $item, $depth, $args) { …. with this function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) { …. I hope this will work.

How can I make error messages in admin

All you need is the correct html markup, namely a paragraph p inside a container div with a certain class. Usable classes are updated green, error & notice-error red, notice-warning orange, notice-info blue. Exemplary usage: add_action( ‘admin_notices’, ‘wpse330943_admin_notices’ ); function wpse330943_admin_notices() { <div class=”notice notice-error”> <p> //some text </p> </div> }

Error establishing a database connection after moving local wordpressmultisite from one directory to another

Thanks for sharing the issues. I will share you how can you move the wp website another folder. Please follow my instruction step by step. Step 1: Copy the all source code this folder location “http://localhost/Wordpress/buddha” file. Step 2: When you copy all file then Pleas paste the all source file this folder location “http://localhost/wp-buddha“. … Read more