Register a SA Forums Account here!
JOINING THE SA FORUMS WILL REMOVE THIS BIG AD, THE ANNOYING UNDERLINED ADS, AND STUPID INTERSTITIAL ADS!!!

You can: log in, read the tech support FAQ, or request your lost password. This dumb message (and those ads) will appear on every screen until you register! Get rid of this crap by registering your own SA Forums Account and joining roughly 150,000 Goons, for the one-time price of $9.95! We charge money because it costs us money per month for bills, and since we don't believe in showing ads to our users, we try to make the money back through forum registrations.
 
  • Post
  • Reply
RyanNotBrian
Nov 28, 2005

Always five, acting as one. Dedicated! Inseparable! Invincible!
Hi all,

After reviewing a bunch of CMS options - Joomla, Umbraco, Wordpress, DIY, I'm pretty much ready to plan all my future CMS development around WordPress.

Is there a standard set of plugins you guys would recommend to begin using WP as a general CMS?

The "All in One SEO Pack" looks useful, anything else? Is there a recommended plugin for multi-lingual sites?

thanks

Adbot
ADBOT LOVES YOU

RyanNotBrian
Nov 28, 2005

Always five, acting as one. Dedicated! Inseparable! Invincible!
Hi,

I'm trying to run some tasks on my blog every time a post is published. I'm using the 'wp_insert_post_data' to hook into it like this:

code:
function wgd_filter_post( $data  )
{
  // Do stuff...
  return ( $data );
}

add_filter ( 'wp_insert_post_data' , 'wgd_filter_post' , 99 );

However I'm finding it's getting called multiple times - sometimes 2, sometimes up to 6 times. Is there a way to ensure this only gets called once?

edit:
Worked it out folks, I was copying some bad sample code. I should have been using an action hook:
code:
add_action ( 'publish_post'  , 'wgd_filter_post'  );

RyanNotBrian fucked around with this message at 06:52 on Mar 18, 2011

RyanNotBrian
Nov 28, 2005

Always five, acting as one. Dedicated! Inseparable! Invincible!
Any recommendations for a banner ad manager for a WP site?

I've come across this one which seems fully featured:
http://www.oiopublisher.com/
It has a small price tag but that's fine.

There is also Adserve which is free:
http://wordpress.org/extend/plugins/adserve/

I don't need clients to be able to manage and buy their own ad spaces, that will all be handled by an admin. I just want a simple way for the admin to be able to upload ads into various spaces and extract performance reports.

Any experience with the above, or any other recommendations?

thanks

  • 1
  • 2
  • 3
  • 4
  • 5
  • Post
  • Reply