Skip to content
/* Get the custom post for the footer content */
$args = array( 'post_type' => 'footer', 'posts_per_page' => 1 );
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post();
the_content();
endwhile;
wp_reset_postdata();
?>