WP plugin that will display post title inside post content?

hristo

Registered Member
Joined
May 15, 2009
Messages
87
Reaction score
14
Hi guys,
Is there any WP plugin that will call post title and will display it inside post content?

Regards
 
You'l need to be a bit more specific about where in the post content you want it; beginning/middle/end?

Can you throw out an example of where you want it?

What you're looking for isn't particularly complicated code-wise, but I can't suggest anything without a few more details
 
the plugin Exec-PHP allows you to use php in your posts...

then use this code snippet

Code:
<?php echo get_the_title($id); ?>

$id = page/post ID
 
Back
Top