Vaata ka neid lehti:
add_filter( ‘the_content’, ‘auto_append_short_description_hidden’, 20 );
function auto_append_short_description_hidden( $content ) {
if ( is_admin() && is_singular( ‘product’ ) ) {
global $post;
$short_description = get_post_meta( $post->ID, ‘_short_description’, true );
if ( ! empty( $short_description ) ) {
$plain_text = wp_strip_all_tags( $short_description );
$hidden = ‘
‘;
$content .= “\n\n” . $hidden;
}
}
return $content;
}