| Server IP : 121.121.20.254 / Your IP : 216.73.216.202 Web Server : Microsoft-IIS/10.0 System : Windows NT WEB-SERVER 10.0 build 20348 (Windows Server 2022) AMD64 User : IUSR ( 0) PHP Version : 8.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/KnowledgeBase/wp-content/plugins/betterdocs/views/widgets/ |
Upload File : |
<?php
$current_category = get_queried_object();
if ( $current_category != null ):
?>
<div class='betterdocs-content-area block-archive-list <?php echo $blockId; ?>'>
<div class="betterdocs-content-inner-area">
<div class="betterdocs-entry-title">
<?php
echo wp_sprintf(
'<%1$s class="betterdocs-entry-heading">%2$s</%1$s>',
$title_tag,
$current_category->name
);
echo wp_sprintf( '<p>%s</p>', wp_kses_post( $current_category->description ) );
?>
</div>
<div class="betterdocs-entry-body betterdocs-taxonomy-doc-category">
<?php $view_object->get( 'widgets/archive-list' );?>
</div>
</div>
</div>
<?php
endif;
?>