public function actionRenderForm(...) {
....
$this->renderPartial('form', array(...), false, true);
}
, в основной вью (которую рендерит actionView или actionEdit, не знаю, как у вас) добавьте jquery код по загрузке формы, что-то вроде(function($) {
$.get(".$this->createUrl('renderForm').", {...}, function(data) {
$('#formHolder').append(data);
});
})(jQuery)
if ( is_category() ) {
/**
* Filters the category archive page title.
*
* @since 2.0.10
*
* @param string $term_name Category name for archive being displayed.
*/
$term_name = apply_filters( 'single_cat_title', $term->name );