MrRobinson
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Adding "date modified" to twenty ten themeI’m back up – thanks for your help. In conclusion an easy way to add a “modified” date to single posts is this:
https://www.ads-software.com/support/topic/adding-date-modified-to-twenty-ten-theme?replies=11#post-1625358Forum: Themes and Templates
In reply to: Adding "date modified" to twenty ten themethanks for the tip, I’ll try it.
Forum: Themes and Templates
In reply to: Adding "date modified" to twenty ten themeIf I go into file manager and just delete the theme can I get back to dashboard and put things back together?
Forum: Themes and Templates
In reply to: Adding "date modified" to twenty ten themeThanks, I sincerely appreciate your help. Do you have any suggestions as how I can recover my site? It’s a hobby more than anything. Since the problem is with the theme, can I change it in file manager or something? Thanks in advance if you have any help. WPWeaver is a twenty ten child theme.
Forum: Themes and Templates
In reply to: Adding "date modified" to twenty ten themetried it your way alchymyth:
<b>Parse error: syntax error, unexpected T_FUNCTION, expecting ‘{‘ in D:\Hosting\6120655\html\wp-content\themes\2010-weaver\2010functions.php on line 499</b>
Uh oh!
Forum: Themes and Templates
In reply to: Adding "date modified" to twenty ten themeThank you for your help alchymyth! (I was posting at the same time as you.)
Forum: Themes and Templates
In reply to: Adding "date modified" to twenty ten themeFrom the solving my own problems Dept.
In the single post editor (single.php) look for:
<div class="entry-meta"> <?php twentyten_posted_on(); ?>
</div><!-- .entry-meta -->
then add:
- Post updated on: <?php the_modified_date(); ?>
after the posted on tag to make:
<div class="entry-meta">
<?php twentyten_posted_on(); ?> - Post updated on: <?php the_modified_date(); ?></div><!-- .entry-meta -->
to the right of the section, – Post updated on August 01, 2010 will appear (it’s even remembers the date modified on all posts).
Thanks me!