Skip to content

Instantly share code, notes, and snippets.

<?php get_header(); ?>
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<?php the_title(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
<?php get_footer(); ?>
<?php
//example function to customise query
function tac_customise_query( $query ) {
if ( is_admin() || ! $query->is_main_query() )
return;
if ( is_post_type_archive( 'post' ) ) {
$query->set( 'posts_per_page', 9 );
return;
}
function get_template_parts( $parts = array() ) {
foreach( $parts as $part ) {
get_template_part( $part );
};
}