Tag Archives: wordpress

Remove Navigation Links on WordPress Posts

The posts on my site are not chronological so it makes no sense to have the “previous/next” navigation links.  The best way to remove them is to comment out the code in the single.php file.  Below are the steps I used to remove the navigation links from my posts.  This applies to the WordPress Twenty Fourteen theme, so your code may be different. Continue reading Remove Navigation Links on WordPress Posts

Create A Child Theme in WordPress Twenty Fourteen

The best way to customize a WordPress site is to use a child theme.  That way the customizations are not lost when the parent theme is updated. Additionally, if you make a major mistake changing the files and the site goes down, you can just delete the child theme folder and the site will come right back up using the parent theme. Continue reading Create A Child Theme in WordPress Twenty Fourteen

Get User Account Expiration Date

Our security team implemented a rule that all vendor user accounts must be reviewed and renewed every 30 days.  To facilitate this process, I created a script to automate retrieval of the expiration date of the vendor accounts based on the description and/or title fields which is where the company name of the vendor was stored.  The resulting .csv file was then used to review the accounts and to open a ticket for renewal of the current accounts. Continue reading Get User Account Expiration Date