How to insert image in wordpress post title?

I want to know how to put an image into the wordpress title, only by the backend. At the moment is use the WordPress-URL in my code like this:

<img 
 src="http://wp.cloudstarter.de/wp-content/uploads/2013/09/logo-cloudshare.png" 
/>

But I want to control, remove and replace my picture just in the Backend. Right now, i just did not figure it out yet how to use my Images in the title of a specific post.

Related posts

Leave a Reply

2 comments

  1. If you want to display the image next to post title, you may need to add Custom fields and edit the post title showing template(usually content-page.php) to integrate the custom field. So when adding the post you need to set the image in the custom field and as title showing part contains the script to display the image, the title will be displayed with the image.

  2. get your header.php code. You can find the code by editing the
    header.php file.

    To edit the file:

    1) Login to WP admin panel

    2) Click Appearance in the left sidebar

    3) Click Editor

    4) In this page click on the header.php link (to edit the file) in the
    right side of the screen.

    5) Copy the code and paste in this forum.

    Put the code between Your code here