OwlCyberSecurity - MANAGER
Edit File: post.php
<?php if ( ! defined( 'ABSPATH' ) ) { exit; } ?> <?php $template_args['post_ID'] = $ID; $template_args['post_Style'] = $Post_Style; $template_args = array_merge( $template_args, neytri_archive_blog_post_params() ); foreach ( $archive_post_elements as $key => $value ) { switch( $value ) { case 'title': case 'content': case 'feature_image': case 'read_more': case 'meta_group': case 'likes_views': case 'social': neytri_template_part( 'blog', 'templates/post-extra/'.$value, '', $template_args ); break; default: $path = neytri_get_template_part( 'blog', 'templates/'.$Post_Style.'/parts/'.$value, '', $template_args ); $path = !empty( $path ) ? $path : neytri_get_template_part( 'blog', 'templates/post-extra/'.$value, '', $template_args ); echo neytri_html_output($path); break; } if( 'meta_group' == $value ) : echo '<div class="entry-meta-group">'; foreach ( $archive_meta_elements as $key => $value ) { switch( $value ) { case 'likes_views': case 'social': neytri_template_part( 'blog', 'templates/post-extra/'.$value, '', $template_args ); break; default: $path = neytri_get_template_part( 'blog', 'templates/'.$Post_Style.'/parts/'.$value, '', $template_args ); $path = !empty( $path ) ? $path : neytri_get_template_part( 'blog', 'templates/post-extra/'.$value, '', $template_args ); echo neytri_html_output($path); break; } } echo '</div>'; endif; } do_action( 'neytri_blog_post_entry_details_close_wrap' );