Viewing 2 replies - 1 through 2 (of 2 total)
  • Have not tested the following

    Go to your plugins list and click Edit under Add Posts to Pages

    In the add-posts-to-pages/index.php Look for:

    //formatting for read more
    		if($readmore){
    			$out .= ' <a href="' . $permalink . '" class="readmore">' . $readmore . '</a>';
    		}

    and add in your arrow before the <a href

    //formatting for read more
    		if($readmore){
    			$out .= ' ? <a href="' . $permalink . '" class="readmore">' . $readmore . '</a>';
    		}

    or if you want the arrow after

    //formatting for read more
    		if($readmore){
    			$out .= ' <a href="' . $permalink . '" class="readmore">' . $readmore . '</a> ?';
    		}
    Thread Starter dleer58

    (@dleer58)

    Added CSS to theme

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Icon in front of "Read more"’ is closed to new replies.