开发者 |
elevate360
campaignkit |
---|---|
更新时间 | 2018年8月8日 06:03 |
捐献地址: | 去捐款 |
PHP版本: | 5.4 及以上 |
WordPress版本: | 4.9.8 |
版权: | GNU General Public License v2.0 (or later) |
版权网址: | 版权信息 |
screen_name
- [string | default campaignkitau] The screen name of the user for whom to return results.count
- [integer | default 5] Specifies the number of Tweets to try and retrieve, up to a maximum of 200 per distinct request. The value of count is best thought of as a limit to the number of Tweets to return because suspended or deleted content is removed after the count has been applied. We include retweets in the count, even if include_rts is not supplied.exclude_replies
- [boolean | default false] This parameter will prevent replies from appearing in the returned timeline. Using exclude_replies with the count parameter will mean you will receive up-to count tweets — this is because the count parameter retrieves that many Tweets before filtering out retweets and replies.include_rts
- [boolean | default true] When set to false, the timeline will strip any native retweets (though they will still count toward both the maximal length of the timeline and the slice selected by the count parameter). Note: If you’re using the trim_user parameter in conjunction with include_rts, the retweets will still contain a full user object.cache_enabled
- [boolean | default true] Save latest tweets into WordPress transient to avoid Twitter API request limiter.cache_expiration
- [integer | default 5] How long does the cache will expire within minutes.max_height
- [integer | default 0] Auto scrollable tweets area. Set to 0
will remove the maximum height.show_cover
- [boolean | default true] Display selected Twitter background cover, profile picture, number of total tweets, following and follower.show_tweets
- [boolean | default true] Display your latest tweets if set to true.show_profile
- [boolean | default true] Display Twitter profile picture on each tweet if set to true.show_media
- [boolean | default true] Display any embedded photos if set to true.show_meta
- [boolean | default true] Display a reply, retweet and like buttons if set to true.show_follow
- [boolean | default true] Display a follow link button if set to true.follow_text
- [string | default Follow Me] A follow link text (e.g Follow Me)ck_html_text
- a parsing version of Twitter text.ck_media_photo_urls
- a list of media images url.ck_created_at
- a human readable timestamp.All the options are listed on the plugin installation page.
You can simply add this function into your theme functions:
add_filter( 'campaignkit_twitter_load_style', '__return_false' )
to disable any styles from this plugin.add_filter( 'campaignkit_twitter_load_script', '__return_false' )
to disable any scripts from this plugin.You can learn more at plugin installation page.