-
Notifications
You must be signed in to change notification settings - Fork 6
/
readme.txt
114 lines (79 loc) · 4.2 KB
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
=== Presenter ===
Contributors: aaroncampbell
Tags: keynote, powerpoint, presentations, slides, slideshare, slideshow
Requires at least: 4.8
Tested up to: 6.1
Stable tag: 1.5.2
Slideshow presentations made simple on WordPress. Design each slide as you would a post using wysiwyg. Works with most presenter remotes as well!
== Description ==
You'll be able to create presentations in no time using WordPress's familiar built-in toolset. No need for SlideShare, with Presenter you are hosting your own presentations and can share them by simply linking to your site. The presentations are built using <a href="https://github.com/hakimel/reveal.js">Reveal.js</a> by Hakim El Hattab, which means it is extremely extensible, works with most browsers, and even works with presenter remotes.
Professional slideshows right on your WordPress site.
Collaborate on the plugin: <a href="http://github.com/aaroncampbell/presenter">Presenter on GitHub</a>
Brought to you by <a href="http://aarondcampbell.com/" title="WordPress Plugins">Aaron D. Campbell</a>
== Installation ==
1. Use automatic installer to install and active the plugin.
== Frequently Asked Questions ==
= Does this work with a presenter remote? =
Yes! I haven't tested it with every remote of course, but all of them that I
have tested have worked perfectly. My personal favorite is the
<a href="http://amzn.com/B002GHBUTU">Logitech Professional Presenter R800</a>
= How do I do background images or videos for my slides? =
On the slide you want to add it to, click the "Show Advanced Slide Setting" link, then click the "Add Data Field" button.
For an image: Set the name of the field to 'background' and put the URL for the image in the value field.
For video: Set the name of the field to 'background-video' and you can add in comma separated URLs to various video sources, such as: //example.com/bearded-dragon-scares-kitten.mp4,//example.com/bearded-dragon-scares-kitten.webm,//example.com/bearded-dragon-scares-kitten.ogv
= Can I make the slideshow look different? =
Absolutely. There are several default themes included, but you can also make
your own. If there is a "presenter" directory in your WordPress theme, Presenter
will look there for additional themes. All you need for a theme is a .css file
with a header like this:
`/** Template Name: My Presenter Template */`
The css file will be included and used in your slideshow.
= I want to put my custom Presenter theme somewhere else. Can I? =
Sure. You can use the `presenter-themes` filter to add your own theme wherever
it is. It is passed an array where the index is the path to the css file and the
value is the name of the theme. Just add your own like this:
`
add_filter( 'presenter-themes', 'add_my_custom_presenter_theme' );
function add_my_custom_presenter_theme( $themes ) {
$themes['/path/to/my/theme.css'] = 'My amazing theme';
return $themes;
}
`
== Upgrade Notice ==
= 1.5.2 =
Fixes upgrades to the latest Reveal.js
== Changelog ==
= 1.5.2 =
* Fix Upgrade to Reveal.js 4.3.1 - add more missing files from package
= 1.5.1 =
* Fix Upgrade to Reveal.js 4.3.1 - add missing files from package
= 1.5.0 =
* Upgrade to Reveal.js 4.3.1
* Support for password protected slideshows
= 1.4.0 =
* Upgrade to Reveal.js 4.1.2
* Add new presenter-init-object filter to allow plugins to change default Reveal settings
* Add new presenter-theme, presenter-reveal-js-dependencies, and presenter-reveal-css-dependencies filters
* Remove unused settings scream
* Remove "Aaron Plugin Framework"
= 1.3.1 =
* Allow theme directories to be added via a new presenter-theme-directories filter so plugins can add presenter themes
= 1.3.0 =
* Upgrade to Reveal.js 3.9.2
* Fixed compatibility with latest SyntaxHighlighter plugin versions
* Minor bugfixes
= 1.2.0 =
* Fix advanced link on new slides
* Use the new editor JS in WordPress 4.8 to improve editor on dynamically added slides
= 1.1.1 =
* Upgrade previous slideshows to use new notes UI
* Fix notice when trashing slideshows
* Fix issue that prevented slideshows from being imported with the WordPress importer
= 1.1.0 =
* Added new user interface for slide notes!
* Added support for slide data attributes
* Upgraded reveal.js to 3.5.0
= 1.0.1 =
* Fix version number issues
= 1.0.0 =
* Original Version