As I’m working in Coda all day and I’m usually working with WordPress code, I took a moment and parsed our WordPress docs and created a WordPress syntax file for Coda.

PHP-HTML-WP mode
The mode is based on the PHP-HTML mode that comes with Coda 1.7 and WordPress 3.3.
Requirements:
Tested on Coda 1.7, might work on previous versions.
Installation:
- Download the packed mode file and unpack it.
- Copy the
PHP-HTML-WP.mode the Coda Modes folder. ~/Library/Application Support/Coda/Modes/
- Open a WordPress or PHP file and load the syntax mode in Coda by visiting Text -> Syntax Mode -> PHP-HTML-WP in the toolbar.
- Optional: To make this mode the default visit the Editor pane in the Preferences window and select the ‘PHP-HTML-WP’ mode as default file type
Please note that this is an early version and is most likely still buggy. If you encounter any issues don’t hesitate to leave us a note.
akismet_add_comment_nonce
Definition:
function akismet_add_comment_nonce( $post_id ) {}
Parameters
Source code
function akismet_add_comment_nonce( $post_id ) { echo '<p style="display: none;">'; wp_nonce_field( 'akismet_comment_nonce_' . $post_id, 'akismet_comment_nonce', FALSE ); echo '</p>'; }8995