Fetch the post from wordpress based on decending order date

How to fetch the post from wordpress based on decending order date and meta key=’test’ and meta_value=123 To fetch posts from WordPress based on descending order of date and with a specific custom field (meta key) and its value, you would typically use the WP_Query class. Here’s an example of how you can achieve this:… Read More »

Useful lsof Commands and Switches – Linux

lsof command in Linux: lsof is one of the most powerful tool for all sysadmins to check and analyze processes running on your Linux server. This gives a detailed information about processes running on the server, path to the executables and other library files the process is calling. In other words, it gives a list… Read More »

Backup and Restore a Single Table in MySQL Database

Hello, Taking the backup of a single table of a MySQL database and restoring it is possible via command line. You might have done this using phpmyadmin or via other applications, let’s check how this can be done using the command line tool. I am not writing too much, let’s directly move to the steps:NOTE:… Read More »