get( 'Description' ) ); array_pop( $description ); $description = implode( '. ', $description ); echo esc_html( $description . '.' ); ?>
';
foreach ( $changelog_array as $value) {
// Replace all enter (\n) elements with , opening and closing span will be added in next process.
$value = preg_replace( '/\n+/', '', $value );
// Add openinf and closing div and span, only first span element will have heading class.
$value = '= ' . $value . '';
// Remove empty element which newr formed at the end.
$changelog .= str_replace( '', '', $value );
}
$changelog .= '';
return wp_kses_post( $changelog );
}