I've just installed this plugin on my site and it means that my custom titles that were previously set no longer work. Here's the link to the brief Wordpress SEO API doc: [http://yoast.com/wordpress/seo/api-docs/]
Previously, I did this:
$pagetitle = '' . $design['name'] . ' | Free Design from My Site';
I have a custom URL rewrite that takes a WP page /design/ and appends the design name to /design/design-name so now I've installed WP SEO, the page title is whatever the title of /design/ is and isn't specific.
According to the docs in the link above, I tried this:
function wpseo_design_detail_title($pagetitle) {
$pagetitle = $design['name'] . ' | Free Web Template from My Site';
}
add_filter( 'wpseo_title', 'wpseo_design_detail_title' );
That does remove the previous /design/ title but instead it just has the sites URL (i.e. the page title is blank).
What am I missing ?