Linux 软件免费装

Delicious Readings

开发者 aldolat
更新时间 2018年5月19日 16:52
捐献地址: 去捐款
PHP版本: 3.0 及以上
WordPress版本: 4.9
版权: GPLv3 or later
版权网址: 版权信息

标签

widget bookmarks delicious readings

下载

2.1 2.2 2.3 2.4.1 2.4.2 1.0 1.1 2.0 2.4

详情介绍:

This plugin allows you to publish some of your Delicious bookmarks on your blog: it retrieves the bookmarks from a specific tag and publishes them on your sidebar. It could be useful, for example, to publish your readings on the Web. Let's say that you read a webpage and bookmark it as "readings". This plugin can get the bookmarks from the tag "readings" (or whatever it is) and display them on a widget in your sidebar. You can also use a shortcode if you want to display your reading list on a static page or on a single post. The plugin may display for each tag: After the plugin's activation, you will have a new widget in Appearance / Widgets. Usage as shortcode You can also use the plugin's shortcode to display your list on a static page or on a single post. Use: [dreadings feed_url="http://delicious.com/v2/rss/USERNAME/TAG-NAME"] Change USERNAME and TAG-NAME as required. In the widget you can use the full set of options. So, for example, if you want to display the tags, use: [dreadings feed_url="http://delicious.com/v2/rss/USERNAME/TAG-NAME" display_tags=true] Usage as PHP function You can also use the main PHP function directly in your theme. Add these lines where you want it be displayed: if ( function_exists( 'dr_fetch_feed' ) ) { $args = array( 'feed_url' => '', 'quantity' => 5, 'display_desc' => false, 'truncate' => 0, 'display_date' => false, 'date_text' => 'Stored on:', 'display_tags' => false, 'tags_text' => 'Tags:', 'display_hashtag' => true, 'display_arrow' => false, 'display_archive' => true, 'archive_text' => 'More posts', 'display_arch_arr' => true, 'new_tab' => false, 'nofollow' => true, ); dr_fetch_feed( $args ); } Make sure to properly use the opening and closing tags <?php and ?> respectively. The only mandatory option is feed_url. Also change USERNAME and TAG-NAME as required. The other options are the default options which you can change according your needs. It isn't necessary to insert all of them. Privacy Policy This plugin does not collect any user data.

安装:

This section describes how to install the plugin and get it working.
  1. From your WordPress dashboard search the plugin Delicious Readings, install and activate it.
  2. Add the new widget on your sidebar.
  3. The only necessary thing to do is to add the feed of the tag on Delicious to retrieve.

屏幕截图:

  • The dashboard panel to set up the widget
  • An example of rendered widget

升级注意事项:

No upgrade notice.

常见问题:

The rendered text on my blog is not similar to the screenshot

You have to modify the style.css of yout theme to fit your needs.

What link have I to insert in the widget?

The link for the feed of a specific Delicious tag is like this: http://delicious.com/v2/rss/USERNAME/TAG-NAME where USERNAME is your username on Delicious and TAG-NAME is the tag that collects all your bookmarks to be published. So, for example, a link could be: http://delicious.com/v2/rss/myusername/mytag. Obviously adjust it to your real username ad tag.

更新日志:

2.4.2 2.4.1 2.4 2.3 2.2 2.1 2.0 1.1 1.0 First release of the plugin.