![]() |
![]() |
![]() |
||||
Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact us. |
![]() ![]() |
|
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed. |
|
Thread Tools |
![]() |
#1 |
Confirmed User
Join Date: Feb 2003
Location: Dreamland
Posts: 1,685
|
Wordpress Plugin Help Please....
Is there a plugin that will display a certain sidebar by the days of the week... I need a different sidebar with certain content for Monday etc but I want to automate it rather then having to update the sidebar for that category each day myself!
Thanks in advance ![]()
__________________
HaHaHa |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#2 |
Too lazy to set a custom title
Industry Role:
Join Date: Aug 2002
Posts: 55,212
|
could have sidebar-monday.php in your theme dir sidebar-tuesday.php etc
and get the current day, if whatever day it is do get_sidebar($day); |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#3 |
Too lazy to set a custom title
Industry Role:
Join Date: Aug 2002
Posts: 55,212
|
Code:
<? // sidebar-monday.php // sidebar-tuesday.php // etc etc $sidebar = strtolower(date('l')); get_sidebar($sidebar); ?> |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#4 |
Too lazy to set a custom title
Industry Role:
Join Date: Aug 2002
Posts: 55,212
|
or 1 liner in your template
Code:
<?php get_sidebar(strtolower(date('l'))); ?> |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#5 |
Too lazy to set a custom title
Industry Role:
Join Date: Aug 2002
Posts: 55,212
|
let me know if this is what you were aiming for
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#6 |
Confirmed User
Join Date: Feb 2003
Location: Dreamland
Posts: 1,685
|
Thanks once again Fris... thats what I was looking for... I'll give it a try later and let you know how it works out for me
![]()
__________________
HaHaHa |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#7 |
Confirmed User
Industry Role:
Join Date: Nov 2009
Location: Way Out There
Posts: 723
|
__________________
Contact.....Johnny[at]wildg[.]com |
![]() |
![]() ![]() ![]() ![]() ![]() |