I am using WordPress to design a website/blog for my church. I found the Arclite theme, which is just perfect except for one thing.
With this theme, the post meta data is in a bar above the post (between the post title and post content). I would really like to move that meta data down below the post (so that below the title, there is the post content, and below that is the meta data).
I am sorta familiar with php, but just enough to be dangerous, and I'm quite nervous about changing these files. Any guidance would be appreciated...
No problem. You need to backup your theme files and then give it a try. You can always return to before ;-)
You will have to open index.php and /or category.php and maybe single.php.
Then you need to find this part :
<p class="post-date">
...
</p>
<p class="post-author">
<span class="info">
...
</span>
</p>
and move it down below
<p class="tags">
....
</p>
that should do the trick.
Don't be scared and try!
Good luck
Anja
Thanks, Anja! That worked beautifully!
bonacci01
Member
Posted 2 years ago #
I tried this on my Arclite theme and never got it to move. I did it on index.php and single.php I didnt seem to find category.php
Do you paste the section below
<p class="tags">
....
</p>
Or inside where the dots are? Thanks much.