Noindex,follow always added to head

I came across a scenario when I was debugging a website recently in that the header contained the Noindex,follow tag no matter what optiosn were selected in the WordPress admin area. This is because of Disallow indexing plugin included. It’s a must use plugin that get’s installed when you install bedrock. If you change the environment … Continued

Writing Code in Your WordPress Posts

To set your code aside so that it looks like a box of code which may be copied and pasted within other code or template file, you can use the <pre> HTML tag. The <pre> tag instructs the browser to use a monospaced font, but to exactly reproduce whatever is inside of the <pre> tags. Every space, line break, every bit of code … Continued

Crontab Template

I’ve been using the following as my template to start cron files: # .—————- minute (0 – 59) # | .————- hour (0 – 23) # | | .———- day of month (1 – 31) # | | | .——- month (1 – 12) OR jan,feb,mar,apr … # | | | | .—- day of … Continued