Scanning for custom embed and prefetching
Scanning for custom embed and prefetching
Scanning for custom embed and prefetching
You might probably want to install Canonical URL’s for WordPress (WordPress Plugin). It allows you to specify a canonical URL for each post and page. So you can configure the way you want. The plugin is not big, you probably can integrate the functionality easily into your theme then.
My guess is that it’s not working because the action name is ‘wp_head’, not ‘wp-head’. remove_action(‘wp_head’,array($aiosp, ‘wp_head’));
Use, wp_head http://codex.wordpress.org/Plugin_API/Action_Reference/wp_head Ref example: Clean up output added via wp_head()
* SOLVED * sorry for the bother. my problem wasnt this char at all –> ; but this line which i missed: echo ‘$(‘a.lightbox’).lightBox(); // Select all links with lightbox class’ . “\n”; Sometimes sterring at code i miss such stuff.. sorry = thanks for anyone who watched.
‘$tracking_code’ ist just a string. It closes <head> automatically. So, no, it doesn’t come after the head, you just failed to use source view. Firebug and similar tools show just the rendered DOM, that’s not good enough. Fix: echo $tracking_code;.
wp_head() and wp_footer() are absolute requirements for any WordPress theme. Without them, themes, plugins, and WordPress core can’t enqueue scripts and styles that are crucial for the correct functioning of your site. (So if something has to go, it’s the menu plugin and not wp_head()). Unfortunately, a lot of plugins don’t actually implement their styles … Read more
For the admin side, the two actions you want are admin_enqueue_scripts and admin_head-(plugin_page). wp_enqueue_scripts and wp_head are only for the front end.
Well, for me the problem, was including during the post content it would not work, but if i did included in the top of the page template model i created, then it would work if i used something like this: VALID FOR PHP 5.3+ $array = array(“keywords” => “keywords here”, “description” => “desc here”); add_action( … Read more
since you want to edit title attribute. goto functions.php and search wp_title, on line 277 you find add_filter(‘wp_title’, ‘suffusion_modify_title’, 10, 3); search for callback fx suffusion_modify_title in /suffusion/functions/filters.php, on line 664 you find suffusion_modify_title fx which i think handle titles.