Output dynamic_sidebar_params in wp_head

Going through its normal proceedings WordPress will already have evaluated wp_head by the time it gets to the widgets. The dynamic_sidebar_params filter will only be called then as well, so it will also be of little help to get your css in the head. Here‘s something I wrote about this issue earlier. To include information … Read more

How to apply a filter to everything?

There is no “filter everything” function. WordPress does something with their capital_P_dangit() function that attaches to ‘the_title’, ‘the_content’, and ‘comment_text’. https://developer.wordpress.org/reference/functions/capital_p_dangit/

Change url to posts if they have custom tax only

It works for me. add_filter(‘post_link’, ‘locale_permalink’, 10, 3); add_filter(‘post_type_link’, ‘locale_permalink’, 10, 3); function locale_permalink($permalink, $post_id, $leavename) { if (strpos($permalink, ‘%category_slider%’) === FALSE) return $permalink; $post = get_post($post_id); if (!$post) return $permalink; if ($post->post_type != ‘post’) { return $permalink; } else { $terms = wp_get_object_terms($post->ID, ‘category_slider’); if (!is_wp_error($terms) && !empty($terms) && is_object($terms[0])) $taxonomy_slug = $terms[0]->slug; else … Read more

Read More in the actual excerpt

Your question is not entirely clear, but it looks like you simply want to remove the continue reading button from the excerpt. You have already found the offending code. Nothing stops you from modifying it in this way: function new_excerpt_more($more) { global $post; return ”; } add_filter(‘excerpt_more’, ‘new_excerpt_more’); To do this properly you must not … Read more