با سلام
می خواستم بدونم آیا امکان اضافه کردن کلاسهای از پیش تعریف شده به بخش ارسال پست
مثل تنظیمات تگ <h1><h1/>وجود داره؟
مثل تصویر زیر
http://images.smpweb.ir/qwsa.jpg
با سلام
می خواستم بدونم آیا امکان اضافه کردن کلاسهای از پیش تعریف شده به بخش ارسال پست
مثل تنظیمات تگ <h1><h1/>وجود داره؟
مثل تصویر زیر
http://images.smpweb.ir/qwsa.jpg
آره وجود داره همین الان کدشو واست آماده کردم حالشو بببر
یه فولدر به اسم css در پوشه تمت درست کن یه فایل css با نام tinymce-edit.css
بعد توش کدهای سی اس اس رو قرار بده
/* CSS Document
============================================ */
.fleft {
float:left;
margin-right:8px;
}
.fright {
float:right;
margin-left:8px;
}
.light {
color: #ff9900;
}
/* END
============================================ */
بعد توی function.php این کدرو اضافه کن
/* Custom CSS styles on WYSIWYG
======================================= */
if ( ! function_exists( 'myCustomTinyMCE' ) ) {
function myCustomTinyMCE($init) {
$init['theme_advanced_buttons2_add_before'] = 'styleselect';
$init['theme_advanced_styles'] = 'Float Left=fleft,Float Right=fright, Light=light';
// you can add your custom css style in here e.g. Light=light => Light is the name that appear on WYSIWYG and light is the name of class that i want it ;
return $init;
}
}
add_filter('tiny_mce_before_init', 'myCustomTinyMCE' );
add_filter( 'mce_css', 'tdav_css' );
function mycustomStyles(){
wp_enqueue_style( 'myCustomStyles', get_bloginfo('template_url').'/css'.'/tinymce-edit.css', '','','all' );
}
add_action('init', 'mycustomStyles');
پرسشی داشتی بپرس موفق باشی
راسی من یه خط کد اضافه نوشتم اونم این پاکش کن
add_filter( 'mce_css', 'tdav_css' );
سلام
به خوبی مشکل را حل کرد.