Modify comments_popup_link output

You can replace __( ‘No comments’, ‘textdomain’ ) with __( ‘<span>No</span> comments’, ‘textdomain’ ), there is nothing that stops you to do it. In general, HTML inside translatable strings are not recommended but if you really need the span tags, you have not other choice to add them server side. I strongly recommend to think … Read more

When translating not all string are present in POedit

PO/MO files’ content depends on the theme/plugin developer. So you bought a half-ready theme… One way is translate strings in php files, but with this you loose the chance to update that, because updates will overwrite your changes. I suggest you: translate the strings with po/mo, than send the updated files to the developer too, … Read more

Can i add wordpress editor to my custom theme option? [closed]

ok if you use vafpress framework as you say so you only have small change 🙂 just use wpeditor instate of textarea 🙂 array( ‘type’ => ‘codeeditor’, ‘name’ => ‘booking’, ‘label’ => __(‘Booking Code !’, ‘machan’), ‘description’ => __(‘Add Booking Code for front-end display !’, ‘machan’), ‘mode’ => ‘html’, ),