To sort this out this is what I did.
OPEN.
wp-content/themes/company/slider.php
FIND around line 55
[code] if($sliderDisableText!=true){
$output .='
';
if(!empty($post->post_title )){
$output .='
}
$post_excerpt = $post->post_excerpt;
$output .=''.$excerpt = get_the_excerpt().'
';
[/code]
if(!empty($post->post_title )){
$output .='
'.$excerpt = get_the_title().'
';}
$post_excerpt = $post->post_excerpt;
$output .=''.$excerpt = get_the_excerpt().'
';
[/code]
REPLACE with:
if($sliderDisableText!=true){
$output .='
';
if(!empty($post->post_title )){
$output .='
}
$post_excerpt = $post->post_excerpt;
// $output .= var_dump($post);
$output .=' ';
if(!empty($post->post_title )){
$output .='
'.$excerpt = get_the_title().'
';}
$post_excerpt = $post->post_excerpt;
// $output .= var_dump($post);
$output .=' ';
No comments:
Post a Comment