If you want to add a standard code/text under all your existing posts and further posts also (automatically), what is the easiest way to do it ?
Is there any plugin available for the same?
Adding a standard text/code below each post on wordpress blogs
(5 posts) (3 voices)-
Posted 4 months ago #
-
I don't know about existing posts, but you can modify the relevant PHP file. There is a plugin that might be of use called "Add Post Footer". It'll add whatever text you want to the end of each post.
See if it helps...
Posted 4 months ago # -
Thanks Sparx. You are always a great help. However, if you come across something which can enable me to add code /text under each existing post also, pl let me know.
Posted 4 months ago # -
Well, this plugin does the job. It helps you to add code to ALL posts. Thanks
Posted 4 months ago # -
@techlee If you need to add something to every post page, goto the theme editor and edit single.php
you will see something like <?php the_content();?>
This is the function that displays the Blog Post content.. Now you can put whatever you need just below it like
<?php the_content();?>
Here goes the Post FooterYou can do the similar stuff on your home page and archive pages also.. you will need to edit index.php and archive.php of your theme
If you need it in every wordpress page edit page.php of your theme,If you are displaying excerpts on the home page,then the function that does that is
called like <?php the_ excerpt();?>Posted 3 months ago #
Reply
You must log in to post.