Server : Apache System : Linux server.lienzindia.com 4.18.0-348.7.1.el8_5.x86_64 #1 SMP Wed Dec 22 13:25:12 UTC 2021 x86_64 User : plutus ( 1007) PHP Version : 7.4.33 Disable Function : NONE Directory : /home/plutus/public_html/wp-content/themes/vrm/partials/blog/ |
Upload File : |
<?php use TotalTheme\Blog\Single_Blocks as Blocks; /** * Single blog post layout. * * All blog elements can be re-ordered via the WP Customizer or filtered via theme * filters. You can also create custom post templates via the WP admin, * so do NOT edit this file manually or via a child theme. * * @package Total WordPress theme * @subpackage Partials * @version 5.5.1 */ defined( 'ABSPATH' ) || exit; ?> <article id="single-blocks" <?php Blocks::wrapper_class(); ?><?php wpex_schema_markup( 'blog_post' ); ?>><?php if ( 'quote' === get_post_format() ) { wpex_get_template_part( 'blog_single_quote' ); // Quote format posts are treated differently. } else { /** * Renders the single blog post blocks. * * @see inc/blog/single-blocks.php * * If you wish to create a custom page design please see the "Dynamic Templates" documentation. * * @link https://total.wpexplorer.com/docs/dynamic-templates/ */ Blocks::render(); } ?></article>