Azera Shop
get_contents( get_template_directory() . '/CHANGELOG.md' );
$azera_shop_changelog_lines = explode( PHP_EOL, $azera_shop_changelog );
foreach ( $azera_shop_changelog_lines as $azera_shop_changelog_line ) {
if ( substr( $azera_shop_changelog_line, 0, 3 ) === '###' ) {
echo '
' . substr( $azera_shop_changelog_line,3 ) . '
';
} else {
echo $azera_shop_changelog_line . '
';
}
}
?>