I want to put this code on the top of a post. (I have it on the bottom already)
<?php if (function_exists('sociable_html')) {
echo sociable_html();
} ?>
Which php file would I edit for that to happen?
I want to put this code on the top of a post. (I have it on the bottom already)
<?php if (function_exists('sociable_html')) {
echo sociable_html();
} ?>
Which php file would I edit for that to happen?
check this "add shortcode" WP_Snippet and see if you can use it for your purpose:
Or add it to the single.php template file in your theme just before the posts title.
These are the options I have
(404.php)
(archive.php)
(comments.php)
(footer.php)
(header.php)
(index.php)
(page.php)
(search.php)
(functions.php)
(home.php)
(l_sidebar.php)
(myheader.php)
(myheader1.php)
(r_sidebar.php)
Looks like your theme does not have a separate single.php template file. ;-(
Yes esmi. That's why I thought it might be helpful to tell you what I had.
What does the single.php include. Maybe I can do a search through some of the files I "think" it could be.
The most likely template file is going to be index.php. That's the file that should be used if a theme doesn't contain a single.php template.
make a copy if index.php, but call it single.php
this is now the template for posts and may be edited without changing the homepage
Thanks everyone.
I tried the index.php but that didn't work.
So I tried home.php, (same code as index.php) and that worked.
The theme is Elements of SEO. Just in case anyone else ever has this problem.
This topic has been closed to new replies.