Questo plugin non è stato testato con le ultime 3 versioni principali (major releases) di WordPress. Potrebbe non essere più mantenuto, o supportato, e potrebbe presentare problemi di compatibilità se utilizzato con versioni più recenti di WordPress.

Line Break Shortcode

Descrizione

Use this to force line breaks into your posts and pages. It is simple. [br] will add a line break. It won’t be filtered out by TinyMCE.

There are no attributes. Not much else to see here. I couldn’t find a plugin that did this anywhere. Thought that was odd.

Example time!

If your text editor content looks like this:

Hello this is my 
[br]
example!

The HTML will end up:

<p>Hello this is my</p>
<p><br /></p>
<p>example!</p>

Because the default styling of a paragraph tag adds an area of white space below it this may result in more of a break than you wanted. Solution:

Hello this is my [br] example!

Which results in the following HTML:

<p>Hello this is my <br /> example!</p>

Question/Comments: Please hit up the forum or drop me a line at Reynolds.TimJ+LinebreakPlugin@gmail.com

Installazione

Install this just like any other WordPress plug-in. Either upload it into your wp-content/plugins directory or load it through the Upload web interface.

Recensioni

Non ci sono recensioni per questo plugin.

Contributi e sviluppo

“Line Break Shortcode” è un software open source. Le persone che hanno contribuito allo sviluppo di questo plugin sono indicate di seguito.

Collaboratori

Traduci “Line Break Shortcode” nella tua lingua.

Ti interessa lo sviluppo?

Esplora il Codice segui il Repository SVN iscriviti al Log delle Modifiche. Puoi farlo tramite RSS con un lettore di feed.

Changelog (registro delle modifiche)

1.0.1 Updated structure in SVN to get plug-in to work.
1.0 – Initial check-in. I don’t predict there will be many changes to this plug-in.