Açıklama
To make the accordions appear the way you want you need to add your own styling to them
Lets you add accordion to your post and pages.
By using the following shortcodes
[accordions]
[accordion title="title1"] tab content [/accordion]
[accordion title="title2"] another content tab [/accordion]
[/accordions]
will generate the following html.
<div id="random-accordion-id-872" class="accordions-shortcode">
<h3 id="title1-0" ><a href="#title1-0">title1</a></h3>
<div class="accordian-shortcode-content" >
Some Text<br />
</div>
<h3 id="title2-1" ><a href="#title2-1">title2</a></h3>
<div class="accordian-shortcode-content " >
Some Text<br />
</div>
</div>
Additional attributes that you could pass into the shortcode
[accordions autoHeight=’true’ disabled=’false’ active=0 clearStyle=false collapsible=false fillSpace=false ]
[accordion title=’title1′ class=’new-class’]
Some Text
[/accordion]
[accordion title=’title2′ class=’new-class’]
Some Text
[/accordion]
[/accordions]
Sample CSS
Here is some sample css to get you started.
Another place to look for it would be the http://jqueryui.com/themeroller/, The shortcode used the jQuery UI to generate the accordion.
.ui-accordion-header{
margin:5px 0 0;
}
.ui-accordion-header a{
padding:5px 12px;
background: #CCC;
color:#FFF;
display:block;
}
.ui-accordion-header.ui-state-active a,
.ui-accordion-header a:hover{
background-color: #DDD;
}
.ui-accordion-content{
padding-top:10px;
}
Yükleme
- Extract the zip file into wp-content/plugins/ in your WordPress installation
- Go to plugins page to activate
- Add styles to make the accordion look the way you want.
İncelemeler
Bu eklenti için herhangi bir değerlendirme bulunmuyor.
Katkıda Bulunanlar ve Geliştiriciler
“Accordion Shortcode” açık kaynaklı yazılımdır. Aşağıdaki kişiler bu eklentiye katkıda bulunmuşlardır.
Katkıda bulunanlar“Accordion Shortcode” eklentisini dilinize çevirin.
Geliştirmeyle ilgilenir misiniz?
Kodu görüntüleyin, SVN deposuna göz atın ya da RSS ile geliştirme günlüğüne abone olun.
Değişiklik Kaydı
1.2.1
- removed php warnings
1.2
Trying to commit the changes from git
1.1
- improved js loading. js only gets loaded when it is needed
- fixed bugs
1.0
- Initial release