Blog

Archive for the WordPress Category


Ways to Block WordPress User Enumeration Hack Using .htaccess
Posted on September 10, 2018 in WordPress by Matt Jennings

# Block User ID Phishing Requests
<IfModule mod_rewrite.c>
RewriteCond %{QUERY_STRING} ^author=([0-9]*)
RewriteRule (.*) $1? [L,R=302]
</IfModule>

# Block Feed ID Phishing Requests
<IfModule mod_rewrite.c>
RewriteCond %{QUERY_STRING} ^feed=([0-9]*)
RewriteRule
Read more…


Hooks: Actions and Filters
Posted on June 24, 2018 in WordPress by Matt Jennings

Hooks

Hooks are functions in WordPress that allow me to call others functions I create at specific times. There are two
Read more…


Quote with Twitter Demo
Posted on May 14, 2018 in JavaScript, jQuery, WordPress by Matt Jennings

This is an example quote!


Shortcode Table of Contents Plugin Demo
Posted on May 14, 2018 in WordPress by Matt Jennings

Table of Contents

What is Lorem Ipsum?

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been
Read more…


WordPress Video Shortcode Demo
Posted on May 11, 2018 in WordPress by Matt Jennings

More info for WordPress video shortcode here.

https://msdnshared.blob.core.windows.net/media/2017/12/15.6P1_RealTimeTestDiscovery.mp4

To Top ↑