Skip to content

Instantly share code, notes, and snippets.

View angry-qa's full-sized avatar

AngryQA angry-qa

View GitHub Profile
<?php
function filter_wp_caption_text( $content ) {
return preg_replace(
'/<p[^>]+class="wp-caption-text"[^>]*>(.+)(?=<\/p>)/s',
'<div class="wp-caption-text">\1</div>',
$content
);
}
@dedunumax
dedunumax / .gitignore Java
Last active October 19, 2025 04:39
A complete .gitignore file for Java.
##############################
## Java
##############################
.mtj.tmp/
*.class
*.jar
*.war
*.ear
*.nar
hs_err_pid*