Search the Wiki
If you have no idea what you QNAP box is doing
Seen here on the QNAP support forum. Try to access your NAS via SSH On a Mac open up Terminal. ssh admin@192.168.0.6 [change the IP Address to suit] Use your password Type the following commands: (The output of these commands should tell you what is actually happening.) df -h cat /proc/mdstat dmesg | tail -n 50
Resolve an issue when multiple oEmbed videos become the same
See the issue documented on this page where two different YouTube oEmbeds on the same page display the same video after someone has viewed the page, browsed to another page and then used the back button to return to the page with multiple video oEmbeds. Here’s my own assessment of the issue and my fix. The issue Full Article…
Advanced Custom Fields – Shortcodes
Here’s how it works: [acf field=”{$field_name}”] or: [acf field=”{$field_name}” post_id=”{$post_id}”] or to get a value from an ‘options’ page use this: [acf field=”no_donations_notice” post_id=”option”]
Deleting WordPress Comments in Bulk
Run the below query if you wish to bulk delete all the pending comments in wordpress. To run the query select SQL, paste the query and click GO. DELETE from wp_comments WHERE comment_approved = ‘0’ Run the following query if you wish to bulk delete all approved comments in wordpress DELETE from wp_comments WHERE comment_approved Full Article…
Programmatically create child pages on theme activation
Found on WP Stackexchange How to programmatically create child pages on theme activation.