16 lines
355 B
PHP
16 lines
355 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
$post_id = upstudy_get_id();
|
||
|
|
|
||
|
|
$lp_single_page_layout = Upstudy::setting( 'lp_single_page_layout' );
|
||
|
|
|
||
|
|
if ( $lp_single_page_layout == '3' ) {
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
?>
|
||
|
|
|
||
|
|
<div class="upstudy-col-lg-4 order-1 order-lg-2 lp-sidebar-col">
|
||
|
|
<?php get_template_part( 'learnpress/tpl-part/single/single', 'sidebar'); ?>
|
||
|
|
</div>
|