Skip to content

Instantly share code, notes, and snippets.

View mahmudulhrabby's full-sized avatar
🏠
Working from home

MD MAHMUDUL HOSSAIN RABBY mahmudulhrabby

🏠
Working from home
View GitHub Profile
// Start of Selection
// Initialize the arguments for the WP query to fetch various post types
$args = array(
'post_type' => ['post', 'session', 'resource', 'video'], // Define post types to query
'posts_per_page' => -1, // Set to '-1' to fetch all posts. Replace with a specific number if needed
'order' => 'DESC', // Order by descending to get the most recent or viewed first
// You can add more arguments here as per your query requirements
);
// Retrieve the most viewed posts using a function provided by the Post Views Counter plugin