Linux 软件免费装

JSON Data Shortcode

开发者 ddean
更新时间 2014年7月14日 11:05
PHP版本: 3.3 及以上
WordPress版本: 3.5

标签

shortcode json data seo-friendly

下载

1.0 1.1 1.2 1.3

详情介绍:

This shortcode lets you pull data into your pages via JSON. Supports unlimited levels of nesting! Built-in caching of results keeps your data providers happy, but can be tailored to your needs with a configurable lifetime. You can use it one of two ways (but not necessarily on the same page - see this article!) [json src="http://example.com/my_data_src?format=json" key="Data.mykey"] --> outputs contents of mykey in the Data object [json src="http://example.com/my_data_src?format=json"]I want my value to appear right here {Data.mysubdata.otherKey} in the middle of my content.[/json] --> replaces the text in {} with contents of otherKey in the mysubdata object in the Data object Note: this plugin allows you to bring content from remote sites into your posts. Please exercise caution, especially if you allow posting by untrusted users.

安装:

Download and install using the built in WordPress plugin installer. Activate in the "Plugins" admin panel using the "Activate" link.

升级注意事项:

1.3 Added a diagnostic page to let users validate JSON requests without creating a post 1.2 Improved compatibility with copy / pasted URLs

常见问题:

URLs are too long! Can I shorten my JSON shortcodes?

Use the name attribute to define a friendly name for your data source! The scope of this name is only the post / page you name it. Also note that using the name attribute more or less restricts you to the self-closing format, because of shortcode parser limitations. [json src="http://example.com/my_data_src?format=json" name="ExampleData"] Later in the same page... [json name="ExampleData" key="Data.mykey"] --> outputs contents of mykey in the Data object

How can I control how frequently my data is refreshed?

Use the lifetime parameter! This parameter is in seconds, is per source, and should be set the same for all references to that source on a post / page for best results. [json src="http://example.com/my_data_src?format=json" lifetime="300"]I want my value to appear right here {myData} in the middle of my content.[/json] --> Will expire the cached data after 5 minutes.

Does this work with caching?

Yes! Any output caching system will cache your post with JSON data included. However, your data will only be checked for expiration when your site builds the post, so time your cache expiration accordingly.

更新日志:

1.3 1.2 1.1 1.0