HTML

Twitter Meta Tag | For App

Insert Tags under the <head> of your site and/or page <meta name=”twitter:card” content=”app”> <meta name=̶...Read More

Twitter Meta Tag | Summary with large image

Insert Tags under the <head> of your site and/or page <meta name=”twitter:card” content=”summary_large_image”> <...Read More

Facebook HTML Meta Tags Templet

Insert Tags under the <head> of your site and/or page <meta property=”og:title” content=”My Web.com” /> <meta p...Read More

Using Permalinks

Default: “Ugly” The default looks like http://example.com/?p=N where N is the Post ID number. It works on all server environments, but it ...Read More

HTTP error when uploading files

1) Add this to your .htaccess file at the root of your WordPress installation just before the # BEGIN WordPress line: SetEnv MAGICK_THREAD_LIMIT 1 OR ...Read More

htaccess Force Require SSL

This will force SSL, and require the exact hostname or else it will redirect to the SSL version. Useful in a /wp-admin/.htaccess file. Replace “...Read More

htaccess | WordPress 3.4 and below

# BEGIN WordPress RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # uploaded files RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes...Read More

htaccess | Multisite WordPress 3.5 and Up

RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # add a trailing slash to /wp-admin RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/...Read More