­ hyphenation not working in Gutenberg editor

With the ‘new’ Gutenberg editor the previously working solution using the tiny_mce_before_init hook does not work anymore, but there is the possibility to define a new shortcode in your theme / plugin as a workaround. Solution for Gutenberg add_shortcode(‘shy’, ‘my_shy_shortcode’); function my_shy_shortcode($atts) { return ‘­’; } This simply adds a new shortcode to WordPress with … Read more

Phantom strong tags in wordpress

You most likely haven’t correctly closed a <strong> tag somewhere. This is the browser’s attempt to resolve that problem. If you look at the raw HTML source by right clicking then View Page Source (not Inspect Element) you should be able to see if there’s a <strong> tag with a missing or misspelled </strong> tag. … Read more

#text at the begging of every page, before the main content block

Since we know that the ‘#’ was accidentally added when you were including the custom fonts from Google that’s addressed, but as per the comments, here’s the correct way to add these fonts so that you’re not dropping them in your custom header. You want to place them in the head instead so you have … Read more

Adding HTML to posts with certain tags?

Welcome to WPSE. Additional markup for certain posts is more appropriately included in the template for that content type. If these are blog posts, then single.php is the likely template used for display, depending on how your theme is structured. The likely problem with the code in your question is that you are not using … Read more

Widget Text Needs to be White [closed]

Without seeing the code it’s a difficult problem to solve, but it sounds like something else is overwriting your code. You may need to be more specific about the H4 you’re targeting footer h4 for instance. You may also need to add !important to your CSS declaration in order to get it to work. See … Read more