How to make a parent page for author.php?

You can add this pages with new rewrite rules like that : add_action(“init”, function () { add_rewrite_tag(“%specialAuthor%”, “([^&]+)”); foreach ([“personalinformation”, “settings”] as $specialAuthor) { add_rewrite_rule( “author/([^/]+)/($specialAuthor)/?$” , “index.php?author_name=\$matches[1]&specialAuthor=\$matches[2]” , “top” ); } }); add_filter(“author_template_hierarchy”, function ($templates) { $specialAuthor = get_query_var(“specialAuthor”, NULL); if (isset($specialAuthor)) { $author = get_queried_object(); $templates = [ “$specialAuthor-{$author->user_nicename}.php”, “$specialAuthor-{$author->ID}.php”, “$specialAuthor.php”, ]; } … Read more

Comments editor not rendering &nbsp and tag

The standard comment form functionality renders the br tag and &nbsp on the front end. You can see this in the image below (which uses Divi). You might want to check the comments.php file on your theme if you find a different behavior for your comments text. Alternatively, if I have not understood the question, … Read more

How to link to img src using HTML email template in WordPress

You are trying to link the image to a relative path ../wp-content/. For the link to work in an e-mail, where the path isn’t known to the reader, you must use the complete full path including http:// or https://. Like this: http://yoursite.com/wp-content/uploads/2017/10/logo-full.jpg

How to prevent encoding plugin HTML output to entities?

With all credits and many thanks to Jacob Peattie in the comment above. After Jacob’s remark that the title is used for e.g. the title element and by some plugins, I followed his advice to create a new field because he made me realize that the front page tagline needed somehow to be seperated from … Read more