[read_later_buttons]
shortcode to render buttons for every one of the supported services. You can also include the names of one or more services (i.e. [read_later_buttons instapaper pocket]
) to just get those buttons. Valid service names are kindle
, instapaper
, pocket
, and readlater
.
The shortcode can also display an estimated reading time if you include the "time" parameter ([read_later_buttons time]
). The reading time can be combined with service names ([read_later_buttons time instapaper]
) and the time will render above the buttons. When including the time estimate, the plugin won't display all the buttons by default. You need to include the "all" parameter (i.e. [read_later_buttons time all]
) in that case. Also, the shortcode has to be used inside "the loop" in order to calculate a time -- in other words in a page, post, or the appropriate parts of your theme template.
Filters
Install and activate the Send to Kindle plugin. Read Later Buttons will detect that the Kindle button is available and offer a checkbox for it on the widget configuration form.
Sure! In your theme's functions.php file, include the following code:
function disable_read_later_buttons_css($status) { return false; } add_filter('read_later_buttons_do_css', 'disable_read_later_buttons_css');
That will remove the CSS from the Instapaper, Pocket, and Readlater buttons whether you're using the widget or the shortcode. You'll have to find your own way to alter the Kindle button's styling.