A quick post to show what I just discovered. Recently I had a case where I needed to show a static coming soon page for non logged-in visitors, but had to show the fully working theme to admin users because the development was done live.
A little Googling got me to this WordPress Maintenance Mode Without a Plugin tutorial by Sivel. It’s a three parts, real quick tutorial that allows for:
- Maintenance mode both for a certain or indefinite duration.
- Style-able maintenance mode notification page.
- Show normal blog to logged-in users.
- Easily turned-off maintenance mode, since you just add a few files to the WordPress installation and can delete those when you’re done.
Another neat things is that it is done using a maintenance mode mechanism already built-in in WordPress (didn’t know it has that). It works just as expected and when the development is done I can remove the files (only two of them) and everything will be back to normal.
Additionally, another simple way to do this is to serve/create a different, maintenance style theme for non-logged in visitors. User Theme is a plugin that allows for that, but I have yet to test how it works.
I’m sure this is a pretty common situation, so how do you guys do it?
So you want to get your themes ready for the newly released Apple iPad? Worry not, take a deep breath and follow this simple checklist:
- Do nothing.
Done. And no, that is not a joke. Generally you won’t have to do anything since iPad’s Mobile Safari is a full-fledged browser comparable to desktop browsers, supporting modern web practices of (X)HTML/CSS/JS and even HTML5 and CSS3.
There are some points I want to mention, though: design consideration, specific things you can do on iPad’s browser, and more.
Read the rest of this entry→
This small tutorial will try to replicate the famous and recently popular Date Display Technique with Sprites, but opting to do it with CSS 3 instead. The advantage of the CSS 3 method is that:
- You don’t have to create CSS image sprites.
- No more sprites limitation. With image sprites the year is limited, the font selection is fixed, the month name is limited to English words only, and so on. With this technique everything can be shown.
- The CSS is much shorter and understandable.
This only works with modern browsers that support CSS3, of course.
Read more →
With wp_list_categories(), you can exclude categories in some ways:
- You can hide any category with the
exclude parameter, use comma separated list for multiple categories.
- You can show only the children of a certain category with the
child_of parameter.
However, there seem to be no way with to make that function completely hide the entire children of a category. Sure, you can use exclude, but if you have a gazillion of child categories and/or adding them frequently, thing can get cumbersome.
Wait. Why does this matter?
Well, a funny edge case with Pico is that when there are a ton of child category in a dropdown menu, it will create a long, empty white space even after the footer ends. It turns out that Suckerfish dropdown works by hiding those submenus from view, but they’re still there affecting margins. If you have a lot of them, the page will get longer.
So a quick solution would be to hide all children from that category. I looked around and didn’t seem to find an answer. I was hoping for the exclude_tree parameter to do the job, but based on my (admittedly limited) experiment, it won’t do whatever it is supposed to do (the trac ticket is for wp_list_pages(), but I suppose they’re the same).
CSS to the rescue
There’s probably a solution that involves writing a plugin and mucking around with PHP, but being lazy I then realized that wp_list_categories() outputs a class with the category’s ID inside each <li>. In that case, a simple display:none should do:
.cat-item-15 ul { display: none; } |
The code example above will hide all children of the category ID 15. Simple, easy, with the added benefit that the children category links still show up on the HTML and therefore readable by search engine crawlers and page readers. Downside is that it only works specifically for that case; can’t really use it for a catch-all solution.
20 January 2010
Comments Off
Wait. Why does a CSS article show up on a WordPress development blog?
Well first of all I stumbled upon this trick accidentally while developing this one theme I’m working on. And also I promise it will be short and simple enough. So do read on.
For the theme I want to display a Table of Content-style home page that will look like this (click the image to view full-size):

That is a centered ordered list with list content below its number. The HTML structure I have is:
<ol id="toc" class="clearfloat">
<li><h2><a href="#">I Learned that Adding an Egg to Ramen Soup is Awesome</a></h2></li>
<li><h2><a href="#">Why I believe printers are the spawn of Hell</a></h2></li>
<li><h2><a href="#">I nominate the most dangerous enemy ever created.</a></h2></li>
</ol> |
…and so, the CSS.
This gets me curious because as we all know, list numbers normally show up to the left of the text. After a bunch of crazy experiments, some of which kept me puzzled about what really happened, I got this solution (leaving out the various text-formatting codes):
body {
counter-reset: toc 0;
}
#toc li:before {
content: counter(toc, lower-roman) ".";
counter-increment: toc;
}
#toc li {
list-style-type: none; /* hide the numbers, show them via the toc li:before above */
text-align: center;
} |
Here’s the main idea. I found out that if I use list-style-type:none and use generated content to display the numbers, the number will show up on top of the text. Great. Next we add text-align: center; and bam, everything is centered nicely as expected.
This is the first time I learned about counter-reset and counter-increment. They basically allow you to set the starting number on a list. I use 0 in my CSS so mine starts from 1, but that number can be anything. Here are some articles I found about this topic:
Results and Demo
Here’s a demo page for this CSS experiment. I’ve tested it and it works on Firefox 3.5, Opera 10, Chrome 3 and Safari 4. IE 8 doesn’t seem to support content, so it won’t show the generated number. I can live with that.
And that’s it. Hope it can be useful! I’ll release the theme pretty soon, so subscribe to the feed if you want to be updated.
It all began with Darren Hoyt’s tweet:
interesting new question over at WPQ courtesy of @jophillips, any ideas? – http://bit.ly/7NOEl3
The particular question was about adding an “old” or “new” class for a listed Links based on whether the Link is inserted less/more than 31 days from now.
Curious, I dug around the Codex and into the core files. I began to think about filtering wp_list_bookmarks. Tabs upon tabs were opened, lines of code tested. Finished, I logged in into my WPQuestions account and opened the page again.
Amazingly, the question was already solved (this is only a couple hours after Darren linked to it), and there I saw two different solutions, both solved the problem with a short and easy to understand piece of code. One of it involved editing core file, which generally is undesirable, but both codes were undeniably elegant and to-the-point.
Continue reading this entry →
One of the most used navigation method used in WordPress themes is to list all of the blog’s Pages and put it horizontally on the header area. The code will look like this:
<ul id="nav">
<li <?php if ( is_home() ) { ?> class="current_page_item"< ?php } ?>>
<a href="<?php echo get_option( 'home' ); ?>/">Home</a>
</li>
< ?php wp_list_pages( 'title_li=' ); ?>
</ul> |
The most important piece there is the wp_list_pages function, which will automatically list all Pages and add class="current_page_item" to the Page link if it’s currently being opened.
Before that function, we add a little more code to display a front page link. Naturally we put it first on the list, and we add our own class for when the front page is currently open. All is well so far, and that is basically the code I’ve been using (including on Pico).
Continue reading this entry →