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\Meta_Blocks as Blocks; /** * Blog single meta. * * @package Total WordPress theme * @subpackage Partials\Blog * @version 5.5.1 */ defined( 'ABSPATH' ) || exit; $args = $args ?? array(); $args['singular'] = true; if ( ! isset( $args['blocks'] ) ) { $args['blocks'] = Blocks::get( $args['singular'] ); } if ( empty( $args['blocks'] ) || ! is_array( $args['blocks'] ) ) { return; } $args['hook_name'] = 'blog_single_meta'; $args['categories_tax'] = 'category'; $args['first_category_tax'] = $args['categories_tax']; ?> <ul <?php Blocks::wrapper_class( $args['singular'] ); ?>><?php /** * Renders the single blog meta blocks. * * @see inc/meta.php * * If you wish to alter the meta blocks or add custom blocks please take a look at the documentation link below and if * you have any questions please open a ticket or leave a comment on ThemeForest for assistance. * * @link https://total.wpexplorer.com/docs/snippets/add-new-blog-entrypost-meta-item/ * */ Blocks::render( $args ); ?></ul>