Forum Replies Created

Viewing 1 replies (of 1 total)
  • Thread Starter Gerry-Psv

    (@gerry-psv)

    I found some interesting in the classes.php (on line 1253)

    if ( (! empty($feed_image)) || (! empty($feed)) ) {
    $link .= ‘ ‘;

    if ( empty($feed_image) )
    $link .= ‘(‘;

    $link .= ‘term_id, $category->taxonomy, $feed_type ) . ‘”‘;

    if ( empty($feed) )
    $alt = ‘ alt=”‘ . sprintf(__( ‘Feed for all posts filed under %s’ ), $cat_name ) . ‘”‘;
    else {
    $title = ‘ title=”‘ . $feed . ‘”‘;
    $alt = ‘ alt=”‘ . $feed . ‘”‘;
    $name = $feed;
    $link .= $title;
    }

    $link .= ‘>’;

    if ( empty($feed_image) )
    $link .= $name;
    else
    $link .= “<img src=’$feed_image’$alt$title” . ‘ />’;
    $link .= ‘‘;
    if ( empty($feed_image) )
    $link .= ‘)’;

    Can I fix my problem at this place? Im not good on php. Can I block the displaying of the broken-image symbol?

Viewing 1 replies (of 1 total)