wp-manual-image-crop
wp-manual-image-crop copied to clipboard
You need to use escape functions for i18n
Hello, I suggest you 2 improvements :
- the first improvment is to use escape i18n functions (like
esc_attr__
oresc_html__
) instead of regular i18n ones. In fact, french translation break your inline script because of simple quotes into text strings… - the second on is to pass
$
asjQuery(document).ready()
. It allows to use$
in place ofjQuery
inside your inline JavaScript code.