Are you sure this is a problem of Add-Meta-Tags. Have you tried deactivating the plugin and testing again? How is your title generated?
Hi George,
Add-Meta-Tags isn’t the course of the issue. I was just wondering if it has a function to override the title, similar to what other SEO plugins use?
Hi,
a new filter has been added in 2.5.1 (will be released soon), which can be used to process the custom title programmatically in the functions.php file of your theme. Sample code:
function amt_custom_title_modified( $title ) {
// trim and strip the pipe character from $title
return $title;
}
add_filter( 'amt_custom_title', 'amt_custom_title_modified', 10, 1 );
Please note that this filter is processed only if a custom title has been added in the Metadata box in the post editing panel.
Feel free to ask for more info or sample code.
I’m marking this topic as resolved.
George
Also check the PHP code that you use in your theme (header.php template) as it is possible that the pipe character is added there.