Files
Roman Pyrih c2e100a763 first commit
2023-07-24 08:30:51 +02:00

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;