Perform DNS Lookup:
https://github.com/phallstrom/AlfredDig
WordPress Function Reference:
http://www.alfredforum.com/topic/2153-search-the-wordpress-function-reference/
Send URL:
| <?php | |
| /** | |
| * Adds a menu item to the admin menu for managing patterns | |
| */ | |
| function s9_add_manage_patterns_menu() { | |
| // Check if the current user has the capability to edit pages | |
| if (!current_user_can('edit_pages')) { | |
| return; | |
| } |
| /** | |
| * You often need to get the content or title from a specific post. | |
| * Sometimes, using a custom loop is the better option, but when you only need | |
| * to get information from a specific post, there’s a better option | |
| */ | |
| echo get_post_field('post_content', $post_id); |
Perform DNS Lookup:
https://github.com/phallstrom/AlfredDig
WordPress Function Reference:
http://www.alfredforum.com/topic/2153-search-the-wordpress-function-reference/
Send URL:
The purpose of this document is to start a discussion that leads to better expectations between speakers and organizers of WordCamps. It is based on Open Conference Expectations by @rmurphey @divya and @paul_irish. It is based on my experience speaking at many WordCamps and seeing some great things and not great things. I would love your comments and feedback.
| <?php | |
| /** | |
| * This is free and unencumbered software released into the public domain. | |
| * | |
| * Anyone is free to copy, modify, publish, use, compile, sell, or | |
| * distribute this software, either in source code form or as a compiled | |
| * binary, for any purpose, commercial or non-commercial, and by any | |
| * means. | |
| * |