• Hi,

    Is there any way to change the posts titles display position?

    I would like to move the post title above the thumbnail and align it to the left.
    Now it’s alwyas displayed to the right of the thumbnail.

    I tried to figured it out on my own and played with custom css, but it didn’t work out or I’ve got it all wrong. And I can’t find similar thread here.

Viewing 2 replies - 1 through 2 (of 2 total)
  • wp-content/plugins/recent-posts-widget-extended/includes/functions.php and the line 170:
    $html .= '<h3 class="rpwe-title"><a href="' . esc_url( get_permalink() ) . '" title="' . sprintf( esc_attr__( 'Permalink to %s', 'recent-posts-widget-extended' ), the_title_attribute( 'echo=0' ) ) . '" rel="bookmark">' . esc_attr( get_the_title() ) . '</a></h3>';

    move below the line 124:

    // Start recent posts markup.
    $html .= '<li class="rpwe-li rpwe-clearfix">';
    Thread Starter hyhy123

    (@hyhy123)

    It worked!

    Many many thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change post title postion’ is closed to new replies.