mirror of
https://github.com/10h30/trestle.git
synced 2026-07-13 19:56:20 +09:00
Remove inadvertent igg_ prefix on blockquote shortcode.
This commit is contained in:
@@ -102,7 +102,7 @@ function trestle_date( $atts ) {
|
||||
return date( $format );
|
||||
}
|
||||
|
||||
add_shortcode( 'blockquote', 'igg_blockquote_shortcode' );
|
||||
add_shortcode( 'blockquote', 'trestle_blockquote_shortcode' );
|
||||
/**
|
||||
* Blockquote
|
||||
*
|
||||
@@ -114,7 +114,7 @@ add_shortcode( 'blockquote', 'igg_blockquote_shortcode' );
|
||||
*
|
||||
* @return string Shortcode output.
|
||||
*/
|
||||
function igg_blockquote_shortcode( $atts, $content = null ) {
|
||||
function trestle_blockquote_shortcode( $atts, $content = null ) {
|
||||
|
||||
$atts = shortcode_atts( array(
|
||||
'citation' => '',
|
||||
|
||||
Reference in New Issue
Block a user