Initial commit

This commit is contained in:
prospect
2024-01-09 23:23:22 -05:00
commit 568e31f981
97 changed files with 44964 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
<?php
function themeStarter_adjust_queries($query)
{
// Projects Archive Query Adjustment
if (!is_admin() and is_post_type_archive('project') and $query->is_main_query()) {
$query->set('posts_per_page', '8');
$query->set('order', 'ASC');
}
}