Single post template not working in wordpress

When we’re editing a post, the post editor is used to define the post’s content (and associated meta data). Meanwhile, the Block Templates within the Site Editor as you have accessed via Appearance > Editor > Templates define how the site and content is laid out and rendered. Admittedly none of the terminology terribly intuitive, … Read more

Plugin or code to send out email to admin when a post is created

No need for plugin here are a few lines of code you can modify and paste in your themes functions.php file and you will get a new email whenever a post is published: add_action(‘publish_post’, ‘send_admin_email’); function send_admin_email($post_id){ $to = ‘[email protected]’; $subject=”mail subject here”; $message = “your message here ex: new post published at: “.get_permalink($post_id); wp_mail($to, … Read more

Function to delete post from category older than 2 days

The get_posts() call is retrieving posts that were published after two days earlier. The after parameter retrieves posts after a certain date, and strtotime() is retrieving the date from two days ago. Try changing after to before, and then change strtotime() first parameter to reflect your request. Researching the get_posts() and strtotime() functions will be … Read more

Display the progress of post achievement with percentage against target in wordpress dashboard

Here are my thoughts, which include both a shortcode and a direct function to display the post progress in the WordPress dashboard/admin area: Creating a Custom Shortcode: You can create a custom shortcode to display the post progress on your WordPress site using the following code: function post_progress_shortcode() { $post_type=”movie”; $target_count = 50000; // Set … Read more

How to show custom post type in all post section?

It seems pretty hacky, but this does work in my testing (I tested with built-in page post type): // Change the post list and search query. add_action( ‘pre_get_posts’, static function ( $query ) { if ( ! is_admin() || ! $query->is_main_query() ) { return; } if ( ! in_array( $query->get( ‘post_type’ ), array( ‘post’, ‘Array’ … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)