Is there a plugin which allows me to save additional, invisible content per post?

I like this idea from wprecipes.com. It is a very lightweight solution. add_shortcode( ‘note’, ‘sc_note’ ); function sc_note( $atts, $content = null ) { if ( current_user_can( ‘publish_posts’ ) ) return ‘<div class=”note”>’.$content.'</div>’; return ”; } It allows you to use the [note]…[/note] shortcode to enter private comments.

Plugin to automatically change anchor text of urls to the destinations title?

Decided to entertain the idea. Adapted from my snippet that changes anchors to collapsed domain names. Little too verbose, but seems to work. add_filter( ‘the_content’, ‘anchors_to_page_titles’ ); function anchors_to_page_titles( $content ) { preg_match_all( ‘/<a.*?href=”https://wordpress.stackexchange.com/questions/6023/(.*?)”.*?>(.*?)<\/a>/’, $content, $matches ); array_shift( $matches ); foreach( $matches[0] as $key => $url ) { $anchor = $matches[1][$key]; if( $url == $anchor … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)