Skip to content

Instantly share code, notes, and snippets.

@ko31
Created May 26, 2015 21:05
Show Gist options
  • Save ko31/2acd30c2a7b70df287cd to your computer and use it in GitHub Desktop.
Save ko31/2acd30c2a7b70df287cd to your computer and use it in GitHub Desktop.
【WordPress】サンプルプラグイン
<?php
/*
Plugin Name: My Plugin
*/
add_filter( 'the_content', 'my_add_content' );
function my_add_content( $content ) {
$html = '<p>テストです。</p>';
return $html . $content;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment