Add TinyMCE Blockquote Cite

Plugin Banner

Add TinyMCE Blockquote Cite

by BartzikWebdesign

Download
Description

This plugin adds a simple function to the TinyMCE editor that allows editing the cite attribute of a blockquote element.

To call the editing window, just double-click or right-click on the blockquote element.

  1. Upload the plugin files to the /wp-content/plugins/add-tinymce-blockquote-cite directory, or install the plugin through the WordPress plugins screen directly.
  2. Activate the plugin through the ‘Plugins’ screen in WordPress
  1. Screenshot 1

    Screenshot 1

  2. Screenshot 2

    Screenshot 2

How can I display the cite attribute at my theme?

You can display the value from cite attribute by adding the following code to your theme style.css:
/* css */
blockquote[cite]:after {
content: “\2014\00a0” attr(cite) “”;
display: block;
}

1.0.1

  • minor updates.

1.0.0

  • first stable version.

0.1

  • first version.
Back to top