• Hello,
    I would like the title (permalinks) of the posts displayen on the homepage of my website pointing to the local copy and the single post titles pointing to the original website.
    Anyone who could help me to do that ? php files to change ? which ones ?
    Thank you for your help
    regards,

    https://wordpress.org/plugins/feedwordpress/

Viewing 1 replies (of 1 total)
  • In twenty fourteen you have to change the content.php in your theme folder:

    <?php
    			endif;
    
    			if ( is_single() ) :
    				the_title( '<h1 class="entry-title"><a href="' . esc_url( get_syndication_permalink() ) . '" target=”_blank” rel="bookmark">', ' (' . get_syndication_source() . ')</a></h1>' );
    			else :
    				the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', ' (' . get_syndication_source() . ')</a></h1>' );
    			endif;
    		?>

    Didn’t try it out though.

Viewing 1 replies (of 1 total)
  • The topic ‘permalinks pointing to local versus copy of the original website’ is closed to new replies.