Skip to content

Instantly share code, notes, and snippets.

@tenman
Created March 9, 2015 09:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tenman/5fbb1a620a6b958a1032 to your computer and use it in GitHub Desktop.
Save tenman/5fbb1a620a6b958a1032 to your computer and use it in GitHub Desktop.
excerpt2content
<?php
// ここから追加
add_filter( 'the_excerpt', 'function_name' );
function function_name( $return_value ) {
$content = get_the_content( '続きを読む' );
$content = apply_filters( 'the_content', $content );
$content = str_replace( ']]>', ']]&gt;', $content );
return $content;
}
//ここまで追加
/* ------------------------------------------------------------------------- *
* Custom functions
/* ------------------------------------------------------------------------- */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment