13 lines
324 B
PHP
13 lines
324 B
PHP
<?php
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
die( 'Direct access forbidden.' );
|
|
}
|
|
|
|
if ( ! function_exists( 'solarify_show_post_views_count' ) ) :
|
|
function solarify_show_post_views_count() {
|
|
if ( function_exists( 'mwt_show_post_views_count' ) ) {
|
|
mwt_show_post_views_count();
|
|
}
|
|
} //solarify_show_post_views_count()
|
|
endif;
|