neodjandre Posted November 11, 2012 Share Posted November 11, 2012 (edited) //change excerpt function custom_excerpt_more($more) { return ' …<br />' . '<a href="'. get_permalink($post->ID) . '">' . 'Continue Reading: '. get_the_title() . '</a>'; } add_filter('excerpt_more', 'custom_excerpt_more'); newbie alert... I need to change the above syntax to replace . 'Continue Reading: '. get_the_title() with an image.. I am a complete newb with php but i am good with html.. thanks Andy Edited November 11, 2012 by neodjandre Quote Link to comment Share on other sites More sharing options...
Jessica Posted November 11, 2012 Share Posted November 11, 2012 If you know HTML, then you know how to put in an image. What is the problem? Quote Link to comment Share on other sites More sharing options...
neodjandre Posted November 11, 2012 Author Share Posted November 11, 2012 (edited) i get confused with the dots "." and the " ' " in the above syntax... worst thing is that when i upload the file to my server, the whole site crashes and i can't play around with trial and error... Edited November 11, 2012 by neodjandre Quote Link to comment Share on other sites More sharing options...
codefossa Posted November 12, 2012 Share Posted November 12, 2012 http://www.w3schools.com/tags/tag_img.asp Quote Link to comment Share on other sites More sharing options...
neodjandre Posted November 12, 2012 Author Share Posted November 12, 2012 ok i know how to use an image in html... but how do i put the image in the above code without messing up ? thanxx Quote Link to comment Share on other sites More sharing options...
codefossa Posted November 12, 2012 Share Posted November 12, 2012 return ' …<br />' . '<a href="'. get_permalink($post->ID) . '">' . '<img src="http://example.com/image.png" />' . '</a>'; Quote Link to comment Share on other sites More sharing options...
neodjandre Posted November 12, 2012 Author Share Posted November 12, 2012 thanxx that works.. btw any free php crash courses you can recommend online ? i dont want to be a stupid newb, php rules! Quote Link to comment Share on other sites More sharing options...
Pikachu2000 Posted November 12, 2012 Share Posted November 12, 2012 (edited) i get confused with the dots "." and the " ' " in the above syntax... worst thing is that when i upload the file to my server, the whole site crashes and i can't play around with trial and error... That's why you shouldn't introduce untested code to a production environment. Set up a local testing server, and use an editor that has decent syntax highlighting. Edited November 12, 2012 by Pikachu2000 Quote Link to comment Share on other sites More sharing options...
neodjandre Posted November 12, 2012 Author Share Posted November 12, 2012 yes i need to do that... been postponing it for a while.. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.