How do I format the date in Event Organizer?

%start{date-format}{time-format}% (using php date format) for example: %start{M jS, Y}{ g:i:a}%* This will output as June 17, 2012 11:00am Shortcode: [eo_events]<a href=”https://wordpress.stackexchange.com/questions/53851/%event_url%”>%event_title%</a> on %start{M jS, Y}{ g:i:a}%, at %event_venue%[/eo_events] Referance: Event Organiser

Linebreaks behaving oddly inside blockquotes

br and p tags get stripped out and converted to newlines, they’re not added until the post content is output. See the codex entry for the wpautop function, this is what is converting those newlines to br and p tags on the_content. It’s difficult to say what exactly is going here in this case though. … Read more

Keep formatting for tables copied from MS Word?

There is a “paste from Word” button. When you’re using the WYSIWYG editor (Visual tab), there’s a button that has a bunch of colored dots on it. When you hover over it, a little box tells you it’s called “kitchen sink”. Click it to expand, and you’ll see a button with the Word icon. Use … Read more

How to define a custom font family for a wordpress blog that will not affect the entire site

You can use this function: http://codex.wordpress.org/Function_Reference/body_class Use this in your header.php <body <?php body_class(); ?>> This gives each page a different class and so you can use CSS to set the font-family for a specific page like so: body.blog span.yourClassName{ font-family:; } Then of course the is also the jQuery solution using the .children() function