Tengo un menú que dice AZAR, al hacer clic en ello me lleva a post al azar, pero la paginación no avanza 1,2, 3, etc, aparte de ello me aparece un código extraño junto a la URL
https://frasescristianas.org/azar/#.XuhMD-d7nIU
Este es el código
Código PHP:
<?php
/**
* Template Name: azhar
*
*/
get_header(); ?>
<div id="primary" class="content-area">
<div id="content" class="site-content" role="main">
<?php if ( have_posts() ) : ?>
<?php vantage_content_nav( 'nav-above' ); ?>
<?php /* Start the Loop */ ?>
<?php
query_posts(array('orderby' => 'rand', 'showposts' => 7, 'cat'=>-629));
while (have_posts ()): the_post();
?>
<?php
/* Include the Post-Format-specific template for the content.
* If you want to overload this in a child theme then include a file
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
*/
get_template_part( 'content', get_post_format() );
?>
<?php endwhile; ?>
<?php else : ?>
<?php get_template_part( 'no-results', 'index' ); ?>
<?php endif; ?>
<?php get_template_part( 'loops/loop', siteorigin_setting( 'layout_search' ) ); ?>
</div><!-- #content .site-content -->
</div><!-- #primary .content-area -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>