$.fn.alignSize = function(params) {
this.width = 10,
this.height = 50;
var vm = this;
if(!params) params = ['width','height'];
this.each(function(){
var el = $(this);
params.forEach(function(item){
console.log(vm[item]);
console.log(el.css(item));
});
});
}
p!= 'This code is' + ' <strong>not</strong> escaped!'
<p>This code is <strong>not</strong> escaped!</p>
ul
li.
#[strong Пункт:] 1
ul
li
strong Пункт
| 1
Как в yii2 правильно подключить свой namespace?
MyClass.php
по пути core/subnamespace/MyClass.php
.composer.json
, как тут и выполнить composer dumpautoload
.common/config/bootstrap.php
алиас на директорию Yii::setAlias('core', dirname(dirname(__DIR__)) . '/core');
UPDATE wp_posts SET post_content = REPLACE(post_content,'www.domain.com/wp-content/uploads/sites/5','www.domain.com/wp-content/uploads');