Changeset 1265185
- Timestamp:
- 10/13/2015 07:33:08 PM (10 years ago)
- File:
-
- 1 edited
-
listic-listicle-creator/trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
listic-listicle-creator/trunk/readme.txt
r1264607 r1265185 4 4 For detailed instructions on using this plugin, including shortcode examples and images, visit http://elliottbernstein.com/listic-listicle-creator/ 5 5 6 = What is Listic? = 7 Listic is a WordPress plugin that allows users to quickly and easily create multi-page listicles of any size within a single post. This is accomplished by using the [listic] shortcode along with item names or numbers of your choice. 8 9 = Quick Start Example Code = 10 NOTE: All Listicl listicles MUST start with a "start" item, as shown below. 11 12 `[listic item="start"] 13 STARTING SLIDE CONTENTS HERE 14 [/listic] 15 16 [listic item="1"] 17 SLIDE CONTENTS HERE 18 [/listic] 19 20 [listic item="2"] 21 SLIDE CONTENTS HERE 22 [/listic] 23 24 [listic item="3"] 25 SLIDE CONTENTS HERE 26 [/listic]` 27 28 == How to Use Listic == 29 30 The key to using Listic is the [listic] shortcode. Use the shortcode multiple times in one post to build up your list, but remember to start with the start page! 31 32 = 1. Create the Start Page = 33 34 Your first listic item is your start page. It is the item that will be displayed on the blog page and category pages. Other items and pagination will only appear on the single post page itself. 35 36 The first item must always be called "start", and will look something like this: 37 38 `[listic item="start"] 39 STARTING SLIDE CONTENTS HERE 40 [/listic]` 41 42 The start page contains no item list numbers (compared to when it is shown in a single post page, when it will contain the pagination below it) 43 44 = 2. Create Item Pages = 45 46 After you've set up your start page, you can create as many item pages as you like. At this point, your code will look something like this: 47 48 `[listic item="start"] 49 STARTING SLIDE CONTENTS HERE 50 [/listic] 51 52 [listic item="1"] 53 SLIDE CONTENTS HERE 54 [/listic] 55 56 [listic item="2"] 57 SLIDE CONTENTS HERE 58 [/listic] 59 60 [listic item="3"] 61 SLIDE CONTENTS HERE 62 [/listic]` 63 64 Each slide will load according to the item that has been clicked in the pagination. 65 66 = 3. Customize Item Names (optional) = 67 68 One of the coolest things about Listic is that after you've created the initial "start" page, you can use ANY names you want for the slides. Want to change slides from "1, 2, 3" to "Mandarin Oriental, Belmond, Peninsula"? You can do it! Just type code as such: 69 70 `[listic item="start"] 71 STARTING SLIDE CONTENTS HERE 72 [/listic] 73 74 [listic item="Mandarin Oriental"] 75 SLIDE CONTENTS HERE 76 [/listic] 77 78 [listic item="Belmond"] 79 SLIDE CONTENTS HERE 80 [/listic] 81 82 [listic item="Peninsula"] 83 SLIDE CONTENTS HERE 84 [/listic]` 85 86 The result will be renamed slide buttons. 87 88 == Customizing Listic's Look == 89 90 Althoug the basic formatting of Listic should adapt well to most WordPress themes and sites, users may want to use the numerous css classes included in Listic to change the look of various elements. Any of the following classes can be used to do so: 91 92 *listic-content-box (content box area), *listic-contet-box-[item number or name] (a specific content box in your list), *listic-item-number (all item numbers), *listic-item-number-[item number or name] (a specific item number in your list), *listic-list-preview (the start page cotents that display on non-single posts), *listic-current-item-number (the number of the current item being displayed) 93 94
Note: See TracChangeset
for help on using the changeset viewer.