$_layout ) {
$num_col = $_layout;
$col = round( 12 / $_layout );
}
$j = 0;
foreach ( $page_ids as $post_id => $settings ) {
$post_id = $settings['content_page'];
$post_id = apply_filters( 'wpml_object_id', $post_id, 'page', true );
$post = get_post( $post_id );
$class = 'col-lg-' . $col;
if ( $n == 1 ) {
$class .= ' col-sm-12 ';
} else {
$class .= ' col-sm-6 ';
}
if ( $j >= $num_col ) {
$j = 1;
$class .= ' clearleft';
} else {
$j++;
}
?>
';
}
echo get_the_post_thumbnail( $post, 'onepress-medium' );
if ( $settings['enable_link'] ) {
echo '';
}
?>
';
}
echo get_the_title( $post );
if ( $settings['enable_link'] ) {
echo '';
}
?>
post_content );
$content = str_replace( ']]>', ']]>', $content );
echo $content;
}
?>