Title
Date
Author
Comments
February 4th, 2010
admin

sub split_domain {         my $domain = shift;         my ( $sld, $subtld, $tld );         if ( $domain =~ s/\.9\.4\.e164\.arpa$//o ) {                 ( $sld, $subtld, $tld ) = ( $domain, '', '9.4.e164.arpa' );         } else {                 ( $sld, $subtld, $tld ) = split /\./, $domain;                 ( $subtld, $tld ) = ( "", $subtld ) unless $tld;         } [...]

September 12th, 2008
admin

Place this code in your index.php file in the themes folder and enter the page numbers to exclude. <?php function remove_page_link($pages) { $pages[] = '23,25,27,30,31'; return $pages; } add_filter('wp_list_pages_excludes', 'remove_page_link');?> make sure to place the code between PHP tags

September 25th, 2007
admin

I’ve already been through a bunch of blog-software packages and none of them are great. So in my attempt to find better software, I’m giving this a try.