Go Back   WarriorForum - Internet Marketing Forums > The Warrior Forum > Main Internet Marketing Discussion Forum
Register Blogs FAQ Social Groups CalendarHelp Desk

Reply
 
LinkBack Thread Tools
Old 09-27-2008, 03:10 PM   #1
SG Lurker Warrior
War Room Member
 
Asher's Avatar
 
Join Date: Jul 2008
Location: Singapore.
Posts: 1,714
Blog Entries: 68
Thanks: 487
Thanked 280 Times in 159 Posts
Social Networking View Member's FaceBook Profile  View Member's Twitter Profile  View Member's YouTube Profile
Contact Info
Send a message via Skype™ to Asher
Default Is It Possible To Have Blog Posts Without Dates?

Hi Warriors,

Was just wondering... is it possible to have a blog and post in it
but not to have the dates shown?

I know that's kind of against how a blog is built but can it be done?
I'm using self-hosted Wordpress at the moment.

If not, any other solution to it?

Asher

Asher is offline   Reply With Quote
Old 09-27-2008, 03:18 PM   #2
HyperActive Warrior
 
Sami's Avatar
 
Join Date: Jan 2006
Location: , , United Kingdom.
Posts: 152
Thanks: 39
Thanked 21 Times in 8 Posts
Default Re: Is It Possible To Have Blog Posts Without Dates?

Hi Asher

Yes, it is ... but you have to know what you're doing so your actions don't screw up the rest of the functions...

Wordpress is open source so you have access to the code. You can either 'delete' the date from an individual post by editing its source (html) or you can go right into WP and your template and delete the date code that stamps the date on your posts.

You can even remove the date etc or edit the source of your individual posts in Blogger too.

But then your blog code won't necessrily know how to categorise your post. Two things can happen (among others):

1- It gets listed as uncategorised ... or

2- It gets lost.

I think the first will happen. But here's what you do ...

Just "hide" the date. So the value will still be there on the post for categorisation purposes but it won't show up. It all depends on your objectives.

And before you ask ... you need to get a hold of someone to set the CSS property of your date parameter to "hidden". Anyone who knows HTML/CSS can do this easily.

Oh ok, here's the kind code you might need (but I haven't tested in your type of scenario ok?). In the source code of your blog, find the date parameter and enclose it in the code below:

<span style="display:none;">Date_Parameter_Here</span>

If instead of editing Wordpress, you just want to test and hide the date in one post, try this:

Switch to Edit mode for that one post.
Find the actual date.
Enclose it in the above code like this...
<span style="display:none;">Actual_Date_Text_Here</span>


Good luck
Sami

>>>> Thanks but 'NO' I don't want your money <<<<

But if you insist ... give a dollar to your favourite charity & PM me ;-)

Last edited by Sami; 09-27-2008 at 03:30 PM. Reason: additional info
Sami is offline   Reply With Quote
Old 09-27-2008, 03:19 PM   #3
Advanced Warrior
War Room Member
 
Join Date: Jul 2006
Location: Runcorn.
Posts: 868
Thanks: 105
Thanked 33 Times in 32 Posts
Social Networking View Member's Twitter Profile 
Contact Info
Send a message via Skype™ to Jim Burney
Default Re: Is It Possible To Have Blog Posts Without Dates?

Asher

Why do you not want the dates showing?

Jim

Jim Burney is offline   Reply With Quote
Old 09-27-2008, 03:26 PM   #4
Senior Warrior Member
War Room Member
 
Andy Fletcher's Avatar
 
Join Date: Nov 2006
Location: , , .
Posts: 2,463
Thanks: 1,046
Thanked 1,120 Times in 373 Posts
Contact Info
Send a message via AIM to Andy Fletcher Send a message via MSN to Andy Fletcher Send a message via Skype™ to Andy Fletcher
Default Re: Is It Possible To Have Blog Posts Without Dates?

You can do this by editing the template to not display it. The posts will still have dates in the database (for ordering purposes etc) but it won't be displayed.

Andy Fletcher is offline   Reply With Quote
Old 09-27-2008, 03:26 PM   #5
HyperActive Warrior
War Room Member
 
Join Date: Aug 2007
Location: , , .
Posts: 217
Thanks: 0
Thanked 10 Times in 8 Posts
Default Re: Is It Possible To Have Blog Posts Without Dates?

You want to look for this code and remove it:
PHP Code:
< ?php the_time 
Depending on the theme, there's one in the index.php file and single.php
Jason K. Thomas is offline   Reply With Quote
Old 09-27-2008, 03:34 PM   #6
SG Lurker Warrior
War Room Member
 
Asher's Avatar
 
Join Date: Jul 2008
Location: Singapore.
Posts: 1,714
Blog Entries: 68
Thanks: 487
Thanked 280 Times in 159 Posts
Social Networking View Member's FaceBook Profile  View Member's Twitter Profile  View Member's YouTube Profile
Contact Info
Send a message via Skype™ to Asher
Default Re: Is It Possible To Have Blog Posts Without Dates?

Quote:
Originally Posted by Jim Burney View Post
Asher

Why do you not want the dates showing?

Jim
Hi Jim,

I want to make a review site but I also want to make it
just one time...

So when I target traffic there in the future, I don't have
to keep updating it. Might as well remove the dates
from it.

It's a long term strategy which I think might work

Asher

Asher is offline   Reply With Quote
Old 09-27-2008, 03:37 PM   #7
SG Lurker Warrior
War Room Member
 
Asher's Avatar
 
Join Date: Jul 2008
Location: Singapore.
Posts: 1,714
Blog Entries: 68
Thanks: 487
Thanked 280 Times in 159 Posts
Social Networking View Member's FaceBook Profile  View Member's Twitter Profile  View Member's YouTube Profile
Contact Info
Send a message via Skype™ to Asher
Default Re: Is It Possible To Have Blog Posts Without Dates?

Quote:
Originally Posted by Sami View Post
Oh ok, here's the kind code you might need (but I haven't tested in your type of scenario ok?). In the source code of your blog, find the date parameter and enclose it in the code below:

<span style="display:none;">Date_Parameter_Here</span>

If instead of editing Wordpress, you just want to test and hide the date in one post, try this:

Switch to Edit mode for that one post.
Find the actual date.
Enclose it in the above code like this...
<span style="display:none;">Actual_Date_Text_Here</span>
Thanks Sami!

Asher is offline   Reply With Quote
Old 09-27-2008, 03:38 PM   #8
SG Lurker Warrior
War Room Member
 
Asher's Avatar
 
Join Date: Jul 2008
Location: Singapore.
Posts: 1,714
Blog Entries: 68
Thanks: 487
Thanked 280 Times in 159 Posts
Social Networking View Member's FaceBook Profile  View Member's Twitter Profile  View Member's YouTube Profile
Contact Info
Send a message via Skype™ to Asher
Default Re: Is It Possible To Have Blog Posts Without Dates?

Quote:
Originally Posted by Jason K. Thomas View Post
You want to look for this code and remove it:
PHP Code:
< ?php the_time 
Depending on the theme, there's one in the index.php file and single.php
That seems a lot easier to accomplish. Thanks a bunch Jason!

Asher

Asher is offline   Reply With Quote
Old 09-27-2008, 04:14 PM   #9
Senior Warrior Member
War Room Member
 
jjpmarketing's Avatar
 
Join Date: Sep 2007
Location: Louisville, KY
Posts: 1,131
Thanks: 41
Thanked 90 Times in 71 Posts
Default Re: Is It Possible To Have Blog Posts Without Dates?

Here is a better solution... and easier to implement. There is a plugin that will allow you to edit the date of your post. This way you can go in about once per month. Modify the posts to reflect the current month... or whatever suits you. Then it looks like the site was recently updated.

I'll have to get back to you on the actual name of the plugin later.

jjpmarketing is offline   Reply With Quote
Old 09-27-2008, 04:18 PM   #10
Senior Warrior Member
 
Join Date: Aug 2008
Location: central Florida
Posts: 1,553
Blog Entries: 2
Thanks: 89
Thanked 101 Times in 82 Posts
Social Networking View Member's Twitter Profile 
Default Re: Is It Possible To Have Blog Posts Without Dates?

I don't think frequently changing dates of posts is a great idea. If regular readers come back and start noticing, it looks bad if the same article that was dated June 1 shows up as July 1, then August 1, etc.

If the info is timeless, hiding the date makes more sense, because the date is not really relevant.

Chris Lockwood is offline   Reply With Quote
Old 09-27-2008, 04:30 PM   #11
HyperActive Warrior
 
Sami's Avatar
 
Join Date: Jan 2006
Location: , , United Kingdom.
Posts: 152
Thanks: 39
Thanked 21 Times in 8 Posts
Default Re: Is It Possible To Have Blog Posts Without Dates?

Quote:
Originally Posted by Chris Lockwood View Post
I don't think frequently changing dates of posts is a great idea. If regular readers come back and start noticing, it looks bad if the same article that was dated June 1 shows up as July 1, then August 1, etc.

If the info is timeless, hiding the date makes more sense, because the date is not really relevant.
I'm with Chris on this. Also the search engines take note of the dates (more so those in the meta tags). You don't want them to think you're manipulating them into thinking you have fresh content when the content is the same but the date is recent.

Sami

>>>> Thanks but 'NO' I don't want your money <<<<

But if you insist ... give a dollar to your favourite charity & PM me ;-)
Sami is offline   Reply With Quote
Old 09-27-2008, 04:41 PM   #12
Advanced Warrior
War Room Member
 
zeurois's Avatar
 
Join Date: Feb 2007
Posts: 511
Thanks: 24
Thanked 23 Times in 9 Posts
Default Re: Is It Possible To Have Blog Posts Without Dates?

Quote:
Originally Posted by Asher View Post
Hi Jim,

I want to make a review site but I also want to make it
just one time...

So when I target traffic there in the future, I don't have
to keep updating it. Might as well remove the dates
from it.

It's a long term strategy which I think might work

Asher
You could replace that date with the current date. This way it will look like you just updated it.


zeurois is offline   Reply With Quote
Old 09-27-2008, 07:58 PM   #13
Senior Warrior Member
War Room Member
 
jjpmarketing's Avatar
 
Join Date: Sep 2007
Location: Louisville, KY
Posts: 1,131
Thanks: 41
Thanked 90 Times in 71 Posts
Default Re: Is It Possible To Have Blog Posts Without Dates?

@CL and Sami,

I only provided that option as an easier method... Vs. having to modify code manually. In fact if there is a plugin to change the date, I would bet there is a plugin to hide the date.

jjpmarketing is offline   Reply With Quote
Old 09-27-2008, 08:04 PM   #14
Senior Warrior Member
War Room Member
 
jjpmarketing's Avatar
 
Join Date: Sep 2007
Location: Louisville, KY
Posts: 1,131
Thanks: 41
Thanked 90 Times in 71 Posts
Default Re: Is It Possible To Have Blog Posts Without Dates?

Ok. I couldn't find the exact plugin on wordpress.org, so you might want to test this out on a test blog before implementing it on your live blog...

but here is the link to a "Date Exclusion" plugin. It will do exactly what you were wanting to do... remove the dates from posts.

Date Exclusion WordPress Plugin

jjpmarketing is offline   Reply With Quote
Old 09-27-2008, 09:27 PM   #15
Senior Warrior Member
War Room Member
 
Ron Killian's Avatar
 
Join Date: Jun 2007
Location: Arkansas, USA.
Posts: 1,518
Blog Entries: 17
Thanks: 86
Thanked 124 Times in 98 Posts
Social Networking View Member's FaceBook Profile  View Member's Twitter Profile 
Contact Info
Send a message via ICQ to Ron Killian Send a message via MSN to Ron Killian
Default Re: Is It Possible To Have Blog Posts Without Dates?

The big reason search engines like blogs is because they update quite often. Of course the SE's will notice if you update, or don't, doesn't matter the date, they don't use it. So while you might hide it from the readers, the SE's will know the site is not being updated.

Don't expect search engine traffic if you don't update your site. You probably already knew that...

Largest Selection of PLR Articles on the Planet! Also Audio, PLR Ebooks, Graphics, PLR Video, Templates, PLR Websites and more with Private Label Rights.

Discover Big Profits with the FREE PLR Newsletter!
Ron Killian is offline   Reply With Quote
Old 09-28-2008, 06:02 AM   #16
SG Lurker Warrior
War Room Member
 
Asher's Avatar
 
Join Date: Jul 2008
Location: Singapore.
Posts: 1,714
Blog Entries: 68
Thanks: 487
Thanked 280 Times in 159 Posts
Social Networking View Member's FaceBook Profile  View Member's Twitter Profile  View Member's YouTube Profile
Contact Info
Send a message via Skype™ to Asher
Default Re: Is It Possible To Have Blog Posts Without Dates?

Quote:
Originally Posted by Ron Killian View Post
The big reason search engines like blogs is because they update quite often. Of course the SE's will notice if you update, or don't, doesn't matter the date, they don't use it. So while you might hide it from the readers, the SE's will know the site is not being updated.

Don't expect search engine traffic if you don't update your site. You probably already knew that...
I'm mainly using Article Marketing for traffic - if there's Search
Engine rankings, it's a bonus. But I'm not banking on it because
there are so many people gunning for it already - either using
SEO or PPC.

If I have timeless info like "Think and Grow Rich" by Napolean Hill,
then if I leave out the date - it'll still benefit the reader as well
as give them the impression that it's updated.

Of course, I'm not comparing myself to Napolean Hill, I'm just
quoting an example off the top of my head.

Asher

Asher is offline   Reply With Quote
Old 09-28-2008, 06:40 AM   #17
Writer Extraordinaire
War Room Member
 
Vince Runza Online's Avatar
 
Join Date: Dec 2006
Location: Scranton, PA, USA.
Posts: 3,327
Thanks: 65
Thanked 403 Times in 85 Posts
Social Networking View Member's FaceBook Profile  View Member's YouTube Profile
Contact Info
Send a message via Skype™ to Vince Runza Online
Default Re: Is It Possible To Have Blog Posts Without Dates?

Okay, if you're using Wordpress, why not just set up a STATIC page? If you go to your control panel, you'll see that you can make a post or a page. Make the static content appear on a static page. No dates, just content!

"The will to prepare to win is more important than the will to win." -- misquoting Coach Vince Lombardi
Vince Runza Online is offline   Reply With Quote
Old 09-28-2008, 06:56 AM   #18
The Beer Hunter
War Room Member
 
Join Date: Dec 2007
Location: United Kingdom.
Posts: 1,220
Thanks: 186
Thanked 408 Times in 224 Posts
Default Re: Is It Possible To Have Blog Posts Without Dates?

I'm very fond of the Mandigo theme, particularly for creating sites for people who might know a lot less about the whole site-editing thing than I do. There are a zillion options that the user can manage from tickboxes etc via the admin panel, 'Show posts without dates' being just one of them. It's not a theme that's going to be suitable for absolutely everything (what is?), but it is free and has so many options about it that it might be worth considering by anyone looking for a dateless theme.

Otherwise, Jason's method is what I'd use. You're likely to find that line in archive.php and search.php too
Diana Lane is offline   Reply With Quote
Old 09-28-2008, 02:18 PM   #19
Senior Warrior Member
War Room Member
 
Ron Killian's Avatar
 
Join Date: Jun 2007
Location: Arkansas, USA.
Posts: 1,518
Blog Entries: 17
Thanks: 86
Thanked 124 Times in 98 Posts
Social Networking View Member's FaceBook Profile  View Member's Twitter Profile 
Contact Info
Send a message via ICQ to Ron Killian Send a message via MSN to Ron Killian
Default Re: Is It Possible To Have Blog Posts Without Dates?

Quote:
Originally Posted by Asher View Post

If I have timeless info like "Think and Grow Rich" by Napolean Hill,
then if I leave out the date - it'll still benefit the reader as well
as give them the impression that it's updated.

Asher
You picked a great example of timeless info..

Largest Selection of PLR Articles on the Planet! Also Audio, PLR Ebooks, Graphics, PLR Video, Templates, PLR Websites and more with Private Label Rights.

Discover Big Profits with the FREE PLR Newsletter!
Ron Killian is offline   Reply With Quote
Reply

  WarriorForum - Internet Marketing Forums > The Warrior Forum > Main Internet Marketing Discussion Forum

Tags
blog, dates, posts

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off



All times are GMT -6. The time now is 03:59 PM.