TIL (thanks Ali) the #WordPress escape functions finish up by applying a filter to the safe output, making them unsafe again.
Tagged with #wordpress
28 results found.
-
-
📣 Image Widget Release: Image Widget 4.4.7 | WordPress.org
📣 Image Widget Release: Image Widget 4.4.7 | WordPress.org
So, what’s new in this release? Glad you asked, because I was getting to the change log:
- Feature – Added new Link Title field and filter to improve tooltip (previously used alt text) (thanks @marklcm)
- Tweak – Added new
image_widget_option_defaultshook to improve customizability (props @svandragt)
-
Hide Trackbacks 1.1.3
Hide Trackbacks is a WordPress plugin that hides pingbacks and trackbacks from your website comments.
I’ve updated the plugin to indicate it works correctly with WordPress 4.9.9 and earlier. It's now also up to PHP 7.2 compatible, and has a number of small fixes to improve code legibility and alignment with the WordPress Coding Standards.
-
Transitioning to Gutenberg
The Classic Editor plugin will be officially supported until December 31, 2021.
[...]
Since the Classic Editor plugin is central in this transition, we are considering including it with upgrades to WordPress 5.0.
In the context of my professional work with WordPress it would be beneficial to see the Classic Editor plugin be included by default into the installation package. This would signal to plugin and theme developers that we are in a transition phase but supporting the existing installations, until Gutenberg is more fully accepted by the wider community. Not doing do could put pressure on smaller developers to just test their updates for Gutenberg only, resulting in a lot of broken sites or a security nightmare where people won’t be able to update to the latet versions of WordPress or their plugins until the teams and processes are ready.
-
Hide Trackbacks 1.1.1
Hide Trackbacks is a WordPress plugin that hides pingbacks and trackbacks from your website comments.
I've updated the plugin to indicate it works correctly with WordPress 4.9 and earlier.
-
Embedding a ted.com video by pasting the URL into a WordPress post means the whole video loads (33mb!) on pageload! Great videos, bad service.
-
Hide Trackbacks works with WordPress 4.2
Hide Trackbacks is a WordPress plugin that hides pingbacks and trackbacks from your website comments.
I've updated the plugin to indicate it works correctly with WordPress 4.2.
-
My Hide Trackbacks #wordpress plugin is now compatible with version 4.1 (wordpress.org/plugins/hide-t…) Keep referrers, stop spam comments.
-
Trying to figure out how to download all my past tweets using Twitter Tools for #WordPress
-
Creating a Wordpress redirection page
This is the simplest way to add a page redirection feature to your WordPress theme.
First, create a new theme file called redirect.php with the following contents:
<?php<br></br>/*<br></br>Template Name: Redirect<br></br>*/<br></br> the_post();<br></br>header('Location: ' . get_the_content());<br></br>die();To create a new redirection page:
- New page, change the template to 'Redirect'
- Switch to HTML editing mode and put the url in the content area.