Can we think litter bit different way:
add_action('wp_head','new_wp_head');
function new_wp_head() {
echo "calling wp_head";
global $civicrm_root;
if ( empty( $civicrm_root ) ) {
return;
}
$region = CRM_Core_Region::instance('html-header', FALSE);
if ( $region ) {
echo '<!-- CiviCRM html header -->';
echo $region->render( '' );
}
}
Make sure in which file you put this and it’s hook with your theme or plugins.
Related Posts:
- Using auth_redirect returns cannot modify header information
- Manually add admin bar
- add_action and wp_head not display content in head section
- Insert Google authorship into WordPress header
- add_action reference a class
- Remove parent theme action in child
- How to do_action and get a return value?
- Remove an action from an external Class
- Remove meta robots tag from wp_head
- Does the event ‘wp_version_check’ even exist? What is it doing?
- Unable to prevent function using save_post firing twice
- Difference between do_action(‘admin_enqueue_scripts’, $hook_suffix) and do_action(“admin_print_styles-$hook_suffix”) syntax
- Cron jobs in a class
- Why, Where, and When to use reference pointers in filters/hooks?
- Add a Custom Field in Comment Box AFTER text area BUT BEFORE Send button
- Using wp_insert_post and post_update_meta but need to fire save_post afterward
- enqueuing React script and hooking its target div fails to load script
- Change meta tags programatically
- Having an add_action( ‘user_new_form’,) [closed]
- What would cause the ‘wp’ action to fire twice per page (but only once per post) in Firefox only?
- Problem:Save Several Duplicate posts in The Database and then Error nesting level of ‘100’ reached
- How to remove an action added by a child theme of Genesis
- I don’t understand why I need a lower priority to remove an action with a higher priority to make it work
- wp_get_attachment_metadata returns false with add_action() ‘add_attachment’ hook
- Is there a way to expose additional fields to the Bulk Action > Edit functionality?
- how can I use add_action with external class which the function contain 2 argument?
- remove_action not working with procedural function
- Why Should We Use wp_clear_scheduled_hook and What it Does?
- Woocommerce Change placement with wrapper
- Which action fire in front-end single post only
- How to add inline css/js inside a shortcode
- Unable to show error message using wp_login action
- Usage of do_action and add_adction
- add action wp_head not working
- where is the documentation for add_action() parameters?
- Is possible dequeue/remove style from wp_footer() hook and add on wp_head() hook?
- How to set a different value in the generator meta tag?
- action hook wp_head higher priority as all other plugins/hooks
- Call add_action() in function wordpress
- How to remove function?
- Validate form in functions.php, send errors back to template
- What is the callback sent to add_submenu_page() invoked by WordPress?
- remove_action returns FALSE
- How can I trigger actions manually?
- How to get $tag to fill into add_action() or add_filter()?
- Add meta field after post has been published
- add_action() in switch statement
- Problem with get_the_excerpt when using an add_action(‘the_content’) containing script tags
- Using Nested add_action()
- Are the hooks in the dashboard such as “load-$page_slug$” and “admin-head-$page_slug$” reliable and consistent throughout installs?
- Is there way to run a code every time when any cron is run?
- Remove Action from Plugin within extended class and no assigned variable
- Inject HTML meta tag inside wordpress tag using add_shortcode
- Payment before publishing post
- add_action and do_action
- Add “add to cart” button in WooCommerce [closed]
- add_action on a specific page
- Gravity Forms parameters return 1
- Generate payment URL in custom email [closed]
- Why is my css and js not enqueued until footer?
- Which hook to add action on specific page?
- W3TC manual cache flush does not work
- Run a function on all posts
- Remove an action added within a class in a WordPress plugin
- add_action.. will work if function is empty?
- call custom action after delete account
- Trying to write a function in an external php file to manage admin menu visibility
- remove_action: Initial attempt failed while a later attempt worked
- Action inside another action not working
- register_post_type not working in wordpress 3.6
- action wp_set_comment_status never gets fired when i change the comment status [closed]
- How to use add_action inside files included by theme’s functions.php
- What do I put in the form action attr on top of form wordpress
- WordPress sent multiple requests on update
- do_action in API call
- i create functions.php in plugin files but add_action (‘wp_head’, ‘function_name’) don’t work
- Custom query_var to get URL paramater not working
- do_action doesn’t trigger if it’s in a template that gets loaded via REST endpoint
- add_action where function has arguments
- Load actions and filters only for the admin CPT list
- Add Action wp_update_post not Updating WYSWIAG editor
- Remove action from plugin
- remove action from woocommerce file
- Font Awesome not loaded on first page of website only – divi theme
- WP_LIST_TABLE bulk action
- Understanding and using did_action() in a conditional statement
- custom COOKIE on custom page
- Adding a conditional to work on certain pages/page templates to an add_action()
- Adapting functions from Genesis theme
- Dealing with html forms [closed]
- Cannot Schedule Sending An Email
- Invoke a function before the action hook
- using media_handle_sideload() to add mp4 files to Media Library
- OOP – add_action
- Removing action from template class
- do_action in header, add action later?
- Passing arguments in add_action inside search template
- save post running twice and creating two database entries – how do I disable this?
- remove an action hook function on a plugin from a theme
- A way to see real changes of posts inside an action?