Not displaying any views
-
Hi!
So I downloaded and installed the latest version of the plugin, but can’t get it to display any views on the posts.
I am using a Total theme and if I paste the
<?php if(function_exists(‘the_views’)) { the_views();} ?>
anywhere on in the single.php it ends up in a random location on the website. There is no post.php file either… Any advice?Here’s my entire code from the single.php file:
`<?php
/**
* The Template for displaying all single posts.
*
* @package Total
* @subpackage Templates
* @author Alexander Clarke
* @copyright Copyright (c) 2014, Symple Workz LLC
* @link https://www.wpexplorer.com
* @since Total 1.0.0
*/ ?><?php
// Redirect link format if custom link defined
if ( get_post_meta( get_the_ID(), ‘wpex_post_link’, true ) ) : ?>
<?php wp_redirect( wpex_permalink(), 301 ); ?>
<?php endif; ?><?php get_header(); ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php if ( ‘post’ == get_post_type() ) : ?>
<?php
// Standard post template file
get_template_part( ‘single’, ‘standard’ ); ?><?php else : ?>
<?php
// 3rd party post type template
get_template_part( ‘single’, ‘other’ ); ?><?php endif; ?>
<?php endwhile; ?>
<?php get_footer(); ?>
- The topic ‘Not displaying any views’ is closed to new replies.