Entries Categorized as 'Wordpress Tips'

WPG2:Creating a custom wpg2header.php file

Date December 7, 2000

WPG2:Creating a custom wpg2header.php file
From WPG2 - Wordpress Gallery2 Plugin
Jump to: navigation, search

[edit] Before you begin

If you need to modify the header.php file of the Wordpress theme to suite your needs, try to do this before proceeding.
It’s recommended that you use a Gallery2 theme which is optimized for Wordpress integration, like the WordpressEmbedded Gallery2 […]

Number of category posts in widget theme

Date December 6, 2000

I chewed the web to bits trying to find this one, but it’s really easy. All you have to do is change $c = $options[’count’] ? ‘1′ : ‘0′; in wp-includes/widgets.php to:
$c = $options[$number][’count’] ? ‘0′ : ‘1′;
So easy, and so much better (I think)…
(ref: http://wordpress.org/support/topic/144489)