Show more post_types on WordPress’ homepage
functions.php
php
<?php
add_action('pre_get_posts', function (WP_Query $query) {
if (!is_admin() && $query->is_main_query() && $query->is_home()) {
$query->set('post_type', ['post', 'post_type_2', 'post_type_3']);
}
});
Post-Meta
- Published: July 15, 2019
- Last modified: July 15, 2019
Comments