';
echo '
';
the_title();
echo '
';
echo '';
}
add_action( 'ascend_single_loop_post_header', 'ascend_post_full_loop_title', 20 );
function ascend_post_full_loop_title() {
echo '';
echo '';
the_title();
echo '
';
echo '';
}
function ascend_get_postsummary() {
global $post;
$ascend = ascend_get_options();
if ( has_post_format( 'video' )) {
$postsummery = get_post_meta( $post->ID, '_kad_video_post_summery', true );
if(empty($postsummery) || $postsummery == 'default') {
if(!empty($ascend['video_post_summery_default'])) {
$postsummery = $ascend['video_post_summery_default'];
} else {
$postsummery = 'video';
}
}
} else if (has_post_format( 'gallery' )) {
$postsummery = get_post_meta( $post->ID, '_kad_gallery_post_summery', true );
if(empty($postsummery) || $postsummery == 'default') {
if(!empty($ascend['gallery_post_summery_default'])) {
$postsummery = $ascend['gallery_post_summery_default'];
} else {
$postsummery = 'img_landscape';
}
}
} elseif (has_post_format( 'image' )) {
$postsummery = get_post_meta( $post->ID, '_kad_image_post_summery', true );
if(empty($postsummery) || $postsummery == 'default') {
if(!empty($ascend['image_post_summery_default'])) {
$postsummery = $ascend['image_post_summery_default'];
} else {
$postsummery = 'img_portrait';
}
}
} else {
$postsummery = get_post_meta( $post->ID, '_kad_post_summery', true );
if(empty($postsummery) || $postsummery == 'default') {
if(!empty($ascend['post_summery_default'])) {
$postsummery = $ascend['post_summery_default'];
} else {
$postsummery = 'img_portrait';
}
}
}
return $postsummery;
}
function ascend_get_postlayout($type = 'normal') {
if(isset($type) && $type == 'full') {
$r['sum'] = 'full';
$r['pclass'] = "postlist fullpost";
$r['tclass'] = '';
$r['data_selector'] = '';
$r['data_style'] = '';
$r['highlight'] = 'false';
} else if (isset($type) && $type == 'grid'){
$ascend = ascend_get_options();
if(isset($ascend['blog_grid_display_height']) && $ascend['blog_grid_display_height'] == 0 ) {
$masonry_style = 'masonry';
} else {
$masonry_style = 'matchheight';
}
$r['sum'] = 'grid';
$r['pclass'] = "grid-postlist";
$r['tclass'] = 'init-masonry row';
$r['data_selector'] = '.b_item';
$r['data_style'] = $masonry_style;
$r['highlight'] = 'false';
} else if (isset($type) && $type == 'grid_standard') {
$r['sum'] = 'grid';
$r['pclass'] = 'grid-postlist';
$r['tclass'] = 'init-masonry row';
$r['data_selector'] = '.b_item';
$r['data_style'] = 'matchheight';
$r['highlight'] = 'true';
} else if (isset($type) && $type == 'photo'){
$r['sum'] = 'photo';
$r['pclass'] = "photo-postlist";
$r['tclass'] = 'init-masonry-intrinsic row-margin-small';
$r['data_selector'] = '.b_item';
$r['data_style'] = 'masonry';
$r['highlight'] = 'false';
} else if (isset($type) && $type == 'below_title'){
$r['sum'] = 'below_title';
$r['pclass'] = "postlist";
$r['tclass'] = '';
$r['data_selector'] = '';
$r['data_style'] = '';
$r['highlight'] = 'false';
} else {
$r['sum'] = 'normal';
$r['pclass'] = 'postlist';
$r['tclass'] = '';
$r['data_selector'] = '';
$r['data_style'] = '';
$r['highlight'] = 'false';
}
return apply_filters( 'ascend_post_layout_args_array', $r );
}
function ascend_get_post_grid_item_size($columns = '3', $sidebar = false) {
if(!$sidebar) {
if ($columns == '2') {
$itemsize = 'col-xxl-4 col-xl-6 col-md-6 col-sm-6 col-xs-12 col-ss-12';
} else if ($columns == '3'){
$itemsize = 'col-xxl-3 col-xl-4 col-md-4 col-sm-6 col-xs-6 col-ss-12';
} else if($columns == '5') {
$itemsize = 'col-xxl-2 col-xl-2 col-md-25 col-sm-3 col-xs-4 col-ss-6';
} else if($columns == '6') {
$itemsize = 'col-xxl-15 col-xl-2 col-md-2 col-sm-3 col-xs-4 col-ss-6';
} else {
$itemsize = 'col-xxl-25 col-xl-3 col-md-3 col-sm-4 col-xs-6 col-ss-12';
}
} else {
if ($columns == '2') {
$itemsize = 'col-xxl-3 col-xl-4 col-md-6 col-sm-6 col-xs-12 col-ss-12';
} else if ($columns == '3'){
$itemsize = 'col-xxl-3 col-xl-4 col-md-4 col-sm-6 col-xs-6 col-ss-12';
} else if($columns == '5') {
$itemsize = 'col-xxl-2 col-xl-2 col-md-25 col-sm-3 col-xs-4 col-ss-6';
} else if($columns == '6') {
$itemsize = 'col-xxl-15 col-xl-2 col-md-2 col-sm-3 col-xs-4 col-ss-6';
} else {
$itemsize = 'col-xxl-2 col-xl-25 col-md-3 col-sm-4 col-xs-6 col-ss-12';
}
}
return $itemsize;
}