Search code examples
phpckeditoroembed

how to install oembed to ckeditor


I want to add embed video in ckeditor.

is this correct?

  1. copy the folder into your plugins directory
  2. setting /ckeditor/config.js

CKEDITOR.editorConfig = function( config ) {
config.extraPlugins = 'oembed';

config.oembed_maxWidth = '560';

config.oembed_maxHeight = '315';

};

and include the plugin in the toolbar (how do I do this).

please help..


Solution

  • You should also add the button to the toolbar something like this:

    CKEDITOR.replace( 'editor1', {
        extraPlugins: 'magicline,oembed,iframe',
        oembed_maxWidth: '560',
        oembed_maxHeight:  '315',
        toolbar: [
            [ 'Bold', 'Italic', 'oembed']
        ]
    });