Need help with wordpress theme.

Discussion in 'PHP' started by mclaren91, Mar 29, 2011.

  1. #1
    Hello guys,

    Im using Channel theme for my website but this theme has a problem. On the function.php there is a function called the_content_limit and it is used to limit characters on post.

    function the_content_limit($max_char, $more_link_text = '', $stripteaser = 0, $more_file = '') {
        $content = get_the_content($more_link_text, $stripteaser, $more_file);
        $content = apply_filters('the_content', $content);
        $content = str_replace(']]>', ']]>', $content);
        $content = strip_tags($content);
    
       if (strlen($_GET['p']) > 0) {
          echo "";
          echo $content;
          echo "&nbsp;<a href='";
          the_permalink();
          echo "'>"."Read More &rarr;</a>";
          echo "";
       }
       else if ((strlen($content)>$max_char) && ($espacio = strpos($content, " ", $max_char ))) {
            $content = substr($content, 0, $espacio);
            $content = $content;
            echo "";
            echo $content;
            echo "&nbsp;[...]";
            echo "&nbsp;<a href='";
            the_permalink();
            echo "'>"."</a>";
            echo "";
       }
       else {
          echo "";
          echo $content;
          echo "&nbsp;<a href='";
          the_permalink();
          echo "'>"."Read More &rarr;</a>";
          echo "";
       }
    }
    
    PHP:
    On the main page there are 10 limited posts with certain number of chars. But, before posts there is printed also a post title and the text becomes stupid. Please, look at image

    [​IMG]

    I tried almost everything to remove this title from there but I can't solve it. Is there anybody who can help me with this ?

    Thanks in advance :)
     
    mclaren91, Mar 29, 2011 IP