Syndication Links

Description

It supports addinglinks to your WordPress posts, pages, and comments, indicating where a syndicated copy is, in the form of a text or icon link. You can do this
manually or with supported plugins. Also contains a generic UI for syndicating to other sites through your site or a Micropub Client.

Privacy and Data Storage Information

This plugin stores syndication links, which can be attached to any post, page, or comment. They can be added to custom post types by filter.

For webmention initiated comments, this information will be added by parsing the source of the webmention.
It is assumed if you send a webmention, you consent to share this information if it is publicly shared on your page. Our recommendation
is that site owners should take down information on request.

For comments initiated on the site, there is built-in way to add these links. For posts, they are typically added by retrieving information stored by other plugins for display. It is assumed
that by installing this plugin, as its intent is to display these links, that you wish to display them.

Settings

Settings for the Syndication Links plugin can be found in the main WordPress “Settings” tab in the
admin dashboard, or if the Indieweb plugin is installed, under the Indieweb tab. The options provided allow for various ways of presenting the syndication links in posts. Syndication Links by default will add links to the content. You can remove this in your plugin if you wish to call the display function directly.

The settings include the following options as follows with either a set of buttons, a check box (with a check indicating that the feature is “on”) or an optional text field:

  • Display Text – Offers options to display text only, icons only, icons and text, and no display(hidden icons).
  • Size – Choice of small, medium, or large size icons.
  • Black Icons – Checking the box defaults to a “black” social media icon set.
  • Show on Front Page, Archive Page, and Search Results – If checked the icons will show on pages other than a single view. If not checked, the icons will be hidden by the links will remain.
  • Show on Feed – If checked the icons will show in your RSS feed as well
  • Text Before Links – This is the text that appears before the Display Text/Icons (as indicated above). The default text is “Syndicated to:” but can be modified if desired.

Note: The particular CSS of your theme may change the display and output of the text and some of the icons.

Supported POSSE plugins and implementations

The plugin supports automatically pulling data from plugins that syndicate your content so you don’t need to do it manually. For anything not built in, integation is easy with a simple filter for potential use with any other plugin.

Using the optional Syndication feature(disabled by default) you can syndicate your posts to:

  • Bridgy – Bridgy is a service that allows you to post to various sites. Signup is required. It currently supports Github, Mastodon and Flickr. The plugin supports Bridgy Publish via Micropub by default.
  • Bridgy Fed – Bridgy Fed is a service that allows you to interact with federated social networks using webmentions.
  • Micro.blog – Micro.blog is a social network and publishing platform for independent microblogs, created by Manton Reece. It uses a custom feed you can add to Micro.blog to support this.
  • Pinboard – Pinboard is a bookmarking site. The support for this is currently only enabled if you have Post Kinds enabled, due to the difficulty in getting a URL. It will bookmark the URL of any object you are citing.
  • Custom Webmention Syndication – Add any site that supports publishing by sending a webmention by configuring it in the settings page

Will be looking to integrate with other plugins to add more options and invite developers to add support if they wish as the interface is simple.
The goal of the interface is not only can you syndicate via Micropub, but in the editor using a simple checkbox.

Credits

In no particular order…

  1. The Indieweb community of users and all users of this plugin
  2. Meitar Moscovitz for fixes and code contributions related to support of the plugin in his various plugins.
  3. Justin Tadlock for the initial Social Icons design.
  4. Jihaisse and Peter Molnar for the SNAP, courtesy of WordPress Syndication
  5. Simple-Icons for their icon packs for logos. Simple Icons is licensed under CC0 v1.0 Universal.
  6. Genericons Neue for their generic icon packs. Genericons Neue is licensed under the GPLv2.
  7. Chris Aldrich for many suggestions on improving the display and for screenshots.
  8. PHPCS is used with the WordPress and PHP Compatibility Standards in order to ensure compatibility with supported versions of PHP and enact WordPress Coding Standards.
  9. GitHub Actions is used to actively test against various PHP versions

Screenshots

  • Example of Syndication Links metabox with links filled in
  • Example of output display on website

Installation

  1. Upload the folder ‘syndication-links’ to the ‘/wp-content/plugins/’ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress

Or install through the WordPress Plugin Directory.

FAQ

How do I prevent the links from being automatically added to the content?

You will have to add the following code to your theme add_filter( 'syndication_links_display', '__return_false' ); and then you can call get_syndication_links() directly in your theme. You should add
this to the init hook.

  • `get_post_syndication_links( $post, $args ) – Returns the HTML for a post.
  • get_comment_syndication_links( $comment, $args ) - Returns the HTML for a comment.
    ** $args
    ***
    style- Defaults to ul
    ***
    text- Display text, defaults to settings option
    ***
    icons- Display icons, defaults to settings option
    ***
    container-css- Class to wrap entire syndication links in
    ***
    single-css- Class to wrap a single link in
    ***
    text-css` – Class to wrap the text before the links in

How can I look up the original if I have a syndication link?

If you add ?original-of= and the URL-encoded URL it will return the post that has that URL stored. As no two posts should have the same two syndication links it will by default only return the first.

If you want to do this with a form, there is a function you can add to your theme called get_original_of_form() and a widget that calls this. Like the search form if you have a
originalofform.php in your theme folder the function will return it so you can customize the form.

What filters are available to modify output?

  • syn_rewrite_secure( $domains ) – $domains is an array of domain names to rewrite to https if found
  • syn_metabox_types( $screens ) – $screens would be an array of post types to add the Syndication Link metabox to.
  • syn_network_strings( $strings ) – $strings is an array of descriptive text strings by domain name
  • syn_add_links( $urls, $post_ID ) – (Deprecated) $urls is an array of retrieved links from $post_ID
  • get_post_syndication_links( $urls, $post_ID) – Replaces syn_add_links.
  • get_comment_syndication_links( $urls, $comment_ID – Filters an array of retrieved comment syndication links.
  • syn_links_display_defaults( $defaults ) – Filter the defaults for displaying Syndication Links
  • syndication_link_checked( $checked, $uid, $post_ID ) – Will check a syndication provider($uid) when loaded. The post ID is passed through to allow more specific targeting.
  • syndication_link_disabled( $disabled, $uid, $post_ID ) – Will disable the checkbox for a syndication provider($uid) when loaded. The post ID is passed through to allow more specific targeting.
  • syn_link_title( $title, $name ) – Allows you to set the title string for Links. Example, pinboard => Pinboard.
  • syn_link_mapping( $icon, $url ) – Allows you to override or set the mapping from URL to icon name.
  • pre_syn_link_icon( $icon, $name ) – Allows you to provide a custom icon. Icons by default are SVG, not URL or filenames.
  • syndication_links_display( true ) – Adds Syndication Links to content display. Set to false if the theme supports this.

How do I contribute or file bug reports?

Development and bug reports on this plugin is on Github at https://github.com/dshanske/syndication-links

Reviews

January 3, 2020
The support for Twitter, Flickr and micro.blog is solid. If you are updating your website with IndieWeb tech, this plugin is highly recommended.
February 10, 2017
This plugin is not perfect but is very useful and a great way of getting involved in the indieweb.
September 3, 2016
Almost everyone uses social media to publicize their WordPress posts. This is a dead-simple (and awesome) way to allow your WordPress installation to visually display where those copies of your posts went. The fact that it integrates with some social tools (like Social Network Auto-Poster to automatically pull in those links) is even better.
Read all 4 reviews

Contributors & Developers

“Syndication Links” is open source software. The following people have contributed to this plugin.

Contributors

Translate “Syndication Links” into your language.

Interested in development?

Browse the code, check out the SVN repository, or subscribe to the development log by RSS.

Changelog

Version 4.4.21 ( 2024-09-28 )

  • Send Micropub content as HTML over plaintext

Version 4.4.20 ( 2024-05-12 )

  • Refresh icons
  • Add filtering of some HTML tags for publishing
  • Update Micropub token text

Version 4.4.19 ( 2024-03-12 )

  • One final tweak today

Version 4.4.18 ( 2024-03-12 )

  • Introduce custom excerpting function for syndication

Version 4.4.17 ( 2024-03-12 )

  • Fix for issue in not properly passing content to Micropub.

Version 4.4.16 ( 2024-02-25 )

  • Update Simple Icons to latest
  • Remove custom bluesky icon in favor of current one
  • Generate minimal CSS file with just the icon colors for Bridgy supported services that can be manually queued
  • Add support for 10ups Twitter Autoshare plugin
  • Add Syndication provider for Bluesky via Bridgy

Version 4.4.15 ( 2023-12-05 )

  • Fix issue with constant

Version 4.4.14 ( 2023-12-01 )

  • Update support for WP-To-Twitter plugin, now Xposter.

Version 4.4.13 ( 2023-10-21 )

  • Add featured derived from the thumbnail of the post for the micropub syndication mf2.
  • Add nostr icon
  • Add cloud icon colored blue as placeholder for Bluesky
  • Add map from indieweb news to indieweb icon

Version 4.4.12 ( 2023-10-01 )

  • Only alow for immediate publishing if the post status is publish
  • Refresh dependencies
  • Bump minimum version to PHP 7.0

Version 4.4.11 ( 2023-5-28 )

  • Disable the option to use the webmention version of Bridgy where Micropub is available and use constant instead.

Version 4.4.10 ( 2023-05-28 )

  • Add API Key tab to the settings page
  • Minor tweaks to improve the rendering of the settings page

Version 4.4.9 ( 2023-05-22 )

  • Refresh Simple Icon set

Version 4.4.8 ( 2023-05-22 )

  • Add labels to settings
  • Remove Twitter Bridgy support due Bridgy removing it.

Version 4.4.7 ( 2023-02-18 )

  • Make posts always enabled for Syndication Links by default to try to address issues people had with same.

Version 4.4.6 ( 2023-02-10 )

  • Emergency release to deal with critical error caused by removal of Bridgy settings.

Version 4.4.5 ( 2023-02-10 )

  • Add labels to settings
  • Fix load issues introduced in previous version
  • Migrate Bridgy Specific settings to universal settings by reimplementing them for Micropub.

Version 4.4.4 ( 2023-01-24 )

  • Remove support for Reddit which does not have a publishing option
  • Per request developer of Bridgy only offer Micropub as a basic action
  • Improve disabled and checkbox handling
  • Improve WordPress to Micropub conversion and use function from Post Kinds

Version 4.4.3 ( 2023-01-02 )

  • Improve response to error and store logs in a metafield.

Version 4.4.2 ( 2022-12-25 )

  • Fix a miscalled function
  • Adjust the load of options to better display
  • Add notation regarding difference between Micropub and Webmention for Bridgy

Version 4.4.1 ( 2022-12-20 )

  • Add function to shorten content to title for Twitter Micropub if longer than 280 characters
  • Add function to shorten content to title for Mastodon Micropub if longer than 500 characters
  • Fix respecting of excerpt settings for Twitter and Mastodon
  • Fix issue with saving Syndication Links

Version 4.4.0 ( 2022-12-19 )

  • Add filter to disable content addition
  • Hide settings if not being used
  • Refresh icons
  • Decommission Meetup as no longer offered by Bridgy
  • New Tabbed Settings Page
  • Add options to select which post types will offer syndication and links
  • Add option to disable use of wp cron and publish immediately
  • Introduce support for Bridgy via Micropub
  • Fix issue with Mastodon Autoposter

Version 4.3.11 ( 2022-05-14 )

  • Refresh icons and CSS build logic
  • Add function to determine mastodon URLs using the mastodon fields in user profiles

Version 4.3.10 ( 2022-02-13 )

  • Refresh icons and other dependencies
  • Save syndication on save, and publish on publish, whereas previously it would only save if you published.

Version 4.3.9 ( 2022-01-11 )

  • Switch empty links to data tags.
  • Switch to new query https://github.com/microdotblog/issues/issues/81 for microdotblog to save on multiple polling requests.

Version 4.3.8 ( 2022-01-08 )

  • Refresh icons
  • Fix issue where hidden links were still taking up space.

Version 4.3.7 ( 2021-11-02 )

  • Refresh icons

Version 4.3.6 ( 2021-07-24 )

  • Style change

Version 4.3.4 ( 2021-06-12 )

  • Refresh icons
  • Switch from id to class for syndication links wrapper

Version 4.3.3 ( 2021-02-28 )

  • Fix issue with schema.

Version 4.3.2 ( 2021-02-28 )

  • Introduce pre_syndication_links_webmention hook to allow you to clear cache before sending webmention.
  • Fix various PHP errors.

Version 4.3.1 ( 2020-12-12 )

  • Introduce syn_link_name filter that allows you to set the name string.
  • Introduce pre_syn_link_icon filter to allow short circuiting the domain mapping and providing an SVG of your choice.
  • Save last return in post meta for diagnostic purposes.

Version 4.3.0 ( 2020-10-13 )

  • Refresh icons
  • Add optional Pinboard POSSE that is only enabled with Post Kinds

Version 4.2.6 ( 2020-08-15 )

  • Update dependencies
  • Adjust publish hook to try to improve success

Version 4.2.5 ( 2020-08-03 )

  • Change time delay syndication code to behave more like the ping/webmention code

Version 4.2.4 ( 2020-08-01 )

  • Change how to decide to postpone syndication if post is scheduled as publish status can be in the future
  • Add ?syndication query variable to allow for filtering archives by syndication link type

Version 4.2.3 ( 2020-06-28 )

  • Add support for Reddit Via Bridgy
  • Dependency and icon updates
  • Add support for importing links from WP-To-Twitter ( props @tw2113)
  • Removal of master branch in favor of trunk branch.

Version 4.2.2 ( 2020-03-26 )

  • Add support for Meetup via Bridgy, props @ngm
  • Dependency and icon updates
  • Code organization cleanup, props @tw2113 and @asuh

Version 4.2.1 ( 2019-12-21 )

  • Fix escaping issue
  • Improve text for micro.blog syndication
  • Add filter to allow checkboxes to be disabled or checked or both

Version 4.2.0 ( 2019-12-15 )

  • Add support for Bridgy Mastodon ( props @CharlieRoseMarie )
  • Check for empty values ( props @glueckpress )
  • Enhance Syndication Metabox ( props @glueckpress )
  • Refactor domain to icon mapping into separate class already there to map custom domains
  • Fix issue where PHPCS was rewriting wordpress to WordPress
  • Switch provider disable functionality to enable functionality
  • Redo domain to icon mapping logic
  • Add micro.blog POSSE support

Version 4.1.4 ( 2019-11-18 )

  • Refresh icons
  • Fix icon association to news.indieweb.org

Version 4.1.3 ( 2019-07-01 )

  • Fix issue with providers not loading because of name change in webmention plugin
  • Refresh icons

Version 4.1.2 ( 2019-05-12 )

  • Update icon size to be relative
  • Reschedule syndication if post status is in future
  • Trigger edit post hook if syndication links are added to try to invalidate cache

Version 4.1.1 ( 2019-04-13 )

  • Update icons
  • Fix minor typo
  • Attempt at cache busting

Version 4.1.0 ( 2019-02-09 )

  • Switch to inline SVG over SVG sprites to reduce load size
  • Add ability to configure arbitrary webmention POSSE providers on the settings page

Version 4.0.5 ( 2019-01-05 )

  • Fix minor bug introduced in customizer by original of widget

Version 4.0.4 ( 2018-12-29 )

  • Add setting to use the excerpt if set for Bridgy Publish to Twitter
  • Indienews(news.indieweb.org) will no longer be a bundled provider per request due spam issues
  • When automatically added to content wrap the links in an element for styling
  • Add function get_original_of_form() which creates a search for for the original of query which looks up posts by their syndication link
  • Added widget that calls new original of form function

Version 4.0.3 ( 2018-12-08 )

  • Checks for 5.0 compatibility.

Version 4.0.2 ( 2018-11-05 )

  • Fix PHP notice about incorrect setting
  • Restore Bridgy global settings options that were in the Bridgy plugin to disable the link back to the post and ignore whitespace

Version 4.0.1 ( 2018-11-03 )

  • Fix issue with settings caused in previous version
  • Add base Bridgy class to store settings
  • Fix issue with display

Version 4.0.0 ( 2018-11-01 )

  • Add support for syndicating posts using an interface to any arbitrary provider
  • include support for syndicating from Micropub to any arbitrary provider

Version 3.4.1 ( 2018-05-06 )

  • Refresh Simple Icons
  • Remove internationalization of icon names
  • Update development environment
  • Add Syndication data to JSONFeed
  • Do not add syndication information to the content of a jsonfeed
  • Add privacy policy and export data support for WordPress 4.9.6
  • Add privacy notice to readme

Version 3.4.0 ( 2018-03-03 )

  • Updated Simple Icons to latest version
  • Switched Genericons Neue to a submodule as the svg version was not distributed in the npm package
  • Added support for Mastodon Auto Post per request. Unable to test due not using same
  • Added support for Keyring Social Importer. Unable to test due not using same
  • Simplified saving of metadata
  • Changed Metabox to a dynamically generated array

Version 3.3.2 ( 2018-02-03 )

  • Updated Simple Icons to latest version

Version 3.3.1 ( 2018-01-04 )

  • Updated Simple Icons to latest version
  • Support for pulling data out for SNAP out of Post Meta without dependence on SNAP classes

Version 3.3.0 ( 2017-12-?? )

  • Switched to Simple Icons as larger, updated, and maintained more frequently than Automattic’s Social Icons repo
  • Added in the Genericon Neue pack for when there is no logo for a site with a series of generic icons
  • SVG Sprite only will be distributed instead of individual SVG files
  • Icon colors automatically generated from Simple Icons repository
  • Icon names automatically generated from Simple Icon repository
  • New code to try and find an icon without hard coding the domain to icon relationship by trying to find the icon name inside the domain string.
  • Development tools now configured for bringing in PHPCS Coding Standards and generating new files
  • Screenshots!
  • License information included for the plugin as well as dependencies
  • Again, automation automation automation

Version 3.2.4 ( 2017-11-23 )

  • Changelog will now note a release date
  • Added/redid colors for many links

Version 3.2.3

  • Remove Social Support as Plugin is no longer listed in WordPress repository
  • Add additional syndication icons
  • Fix textdomain issues
  • Add PHP Compatibility tests and textdomain tests
  • PHPCS Improvements
  • Add setting for disabling links in feed

Version 3.2.2

  • Remove H-Card Widget

Version 3.2.1

  • Break add get_syndication_links function into smaller pieces ( props @Ruxton )
  • Adds get_syndication_links_elements which returns array of anchor tags
  • Adds get_syndication_links_display_defaults to return default options
  • Adds get_syndication_links_text_before to return textbefore on it’s own

Version 3.2.0

  • Add support for comment syndication links
  • Add CSS for styling text before

Version 3.1.1

  • Fix documentation re priority of content filter
  • Remove empty check as interfering with filter
  • Add uniqueness check after filter

Version 3.1.0

  • Cleanup of settings attributes using enhancements available in WordPress 4.7
  • Individual SVG icons and code to generate an SVG sprite now included in the plugin
  • Option to have hidden links now available
  • Small Medium and Large CSS files are included by option – generated by sass
  • Option to disable links being added to content removed as they can now be hidden. Any theme that wants to call the display function directly will have to remove the content filter
  • Add arguments to get_syndication_links to allow for customized presentation
  • Adding ?original-of=url with url being the syndication URL will return the original entry.

Version 3.0.5

  • Change storage of syndication links in order to match Micropub plugin. Storage is now array
  • Remove old property once migrated to new
  • Remove JSON REST filter as deprecated
  • Add support for the official Medium plugin per request @chrisaldrich

Version 3.0.4

  • Compatibility update
  • Add textdomain for language support

Version 3.0.2

* Adjust close bracket

Version 3.0.1

* Fix text display issue

Version 3.0.0

* Remove icon fonts in favor of SVG
* Remove rel-me support to move to implementation in Indieweb plugin
* Remove h-card support to move to implementation in Indieweb plugin (it wasn't very good anyway)
* Introduce new get_syndication_data function to abstract out storage

Version 2.1.0

* Removed user meta code

Version 2.0.3

* Minor Tweaks and Cleanup

Version 2.0.2

* CSS fixes
* Version number added to CSS import to avoid caching on update

Version 2.0.1

* Misc. Bug Fixes
* Bridgy Publish Support removed - new Bridgy plugin will handle that

Version 2.0.0

* Rewritten to remove global scoping
* Option to add URLs to the head of the home page for rel-me auth
* Option to add URLs as a widget for rel-me auth

Version 1.0.3

* Security Fix. Nothing new

Version 1.0.2

* Refinements
* Add support for pages and a filter to add additional content types

Version 1.0.0

* Refinements
* Addition of h-card widget.
* Improvements to hooks
* Addition of automatic information from SNAP and Social(courtesy WordPress Syndication).
* Now supports second font choice and choice of color or black.

Version 0.6.0

* Add hooks and functions to allow additional urls to  be added

Version 0.5.0

* Clean up the plugin for initial release to WordPress repository.

Version 0.5

* Moved to simplified data structure.
* Hidden migration function

Version 0.4

* Rewriting using Grunt/SASS for more flexibility

Version 0.3

* Customizable Networks finished.
* Changed social icons CSS to automatically add only if the class for the list has social-icon in it.

Version 0.2

* Settings Screen rewritten using WordPress Settings API.
* Going to rewrite with customizable networks and thus option to disable sites you do not syndicate to.
* Added social icons CSS to automatically add icons to anything in a <LI>

Version 0.1

* Forked from the Semantic Comments plugin. Start of configurable options.
VIP777 login Philippines Ok2bet PRIZEPH online casino Mnl168 legit PHMAYA casino Login Register Jilimacao review Jl777 slot login 90jili 38 1xBet promo code Jili22 NEW com register Agila Club casino Ubet95 WINJILI ph login WINJILI login register Super jili168 login Panalo meaning VIP JILI login registration AGG777 login app 777 10 jili casino Jili168 register Philippines APALDO Casino link Weekph 50JILI APP Jilievo xyz PH365 casino app 18JL login password Galaxy88casino com login superph.com casino 49jili login register 58jili JOYJILI apk Jili365 asia ORION88 LOGIN We1win withdrawal FF777 casino login Register Jiligo88 philippines 7777pub login register Mwgooddomain login SLOTSGO login Philippines Jili188 App Login Jili slot 777 Jili88ph net Login JILIMACAO link Download Gcash jili login GG777 download Plot777 app download VIPPH register Peso63 jili 365.vip login Ttjl casino link download Super Jili 4 FC178 casino - 777 slot games JILIMACAO Philippines S888 register voslot LOVE jili777 DOWNLOAD FK777 Jili188 app CG777 app 188 jili register 5JILI login App Download Pkjili login Phdream Svip slot Abcjili6 App Fk777 vip download Jili888 register 49jili VIPPH register Phmacao co super Taya777 link Pogo88 real money Top777 app VIP777 slot login PHMACAO 777 login APALDO Casino link Phjili login Yaman88 promo code ME777 slot One sabong 888 login password PHMAYA casino Login Register tg777 customer service 24/7 Pogibet slot Taya777 org login register 1xBet live Acegame888 OKBet registration JILIASIA Promotion Nice88 voucher code AgilaClub Gaming Mnl168 link Ubet95 free 50 PHMAYA casino login JLBET 08 Pb777 download 59superph Nice88 bet sign up bonus Jiliyes SG777 download apk bet88.ph login JILIPARK casino login Register Philippines PHMAYA APK CC6 casino login register mobile PHMACAO com download MWPLAY app JILIPARK Download Jili999 register link download Mnl646 login Labet8888 download 30jili jilievo.com login Jollibee777 open now LOVEJILI 11 18JL casino login register Philippines JILIKO register Philippines login Jililuck 22 WJPESO casino PHMAYA casino login Jili777 login register Philippines Ttjl casino link download W888 login Register Galaxy88casino com login OKBet legit tg777 customer service 24/7 Register ROYAL888 Plot777 login Philippines BigWin Casino real money PHLOVE 18JL PH 18JL casino login register Philippines SG777 Pro Taya777 pilipinong sariling casino Jiligames app MNL168 free bonus YesJili Casino Login 100 Jili casino no deposit bonus FC178 casino free 100 Mwcbet Download Jili888 login Gcash jili download JILIMACAO 123 Royal888 vip 107 Nice888 casino login Register FB777 link VIPPH app download PHJOIN 25 Ubet95 legit phcash.vip log in Rrrbet Jilino1 games member deposit category S888 live login FF777 download FC777 VIP APK ME777 slot Peso 63 online casino OKGames app Joyjili customer service superph.com casino FB777 Pro Rbet456 PH cash online casino Okbet Legit login taruhan77 11 VIPPH 777Taya win app Gogo jili 777 Plot777 login register Bet99 app download Jili8989 NN777 VIP JP7 fuel Wjevo777 download Jilibet donnalyn login Register Bossjili ph download 58jili login registration YE7 login register FC777 new link login 63win register Crown89 JILI no 1 app Jili365 asia JLBET Casino 77PH fun Jili777 download APK Jili8 com log in CC6 casino login register mobile ph365.com promotion phjoin.com login register 77PH VIP Login download Phdream live chat Jlslot2 Me777 download Xojili legit PLDT 777 casino login Super Jili Ace Phdream 44 login Win888 casino JP7 Bp17 casino login TTJL Casino register FB777 slot casino Jili games online real money phjoin.com login register BET99 careers ORION88 LOGIN Plot777 login Philippines Labet8888 login JILI Official Pogibet app download PH777 casino register LOVEJILI app Phvip casino VIP jili casino login PHMACAO app 777pnl legit YE7 casino online Okbet download CC6 bet app 63win club Osm Jili GCash LOVEJILI 11 Www jililive com log in Jili58 casino SuperAce88 JiliLuck Login Acegame 999 777pnl promo code MWPLAY good domain login Philippines Pogo88 app Bet casino login Superph98 18jl app download BET999 App EZJILI gg 50JILI VIP login registration Jilino1 new site pogibet.com casino Jili Games try out Gogojili legit 1xBet Aviator WINJILI ph login Jili168 register How to play Jili in GCash 777pnl PHDream register login JILISM slot casino apk FB777 c0m login EZJILI Telegram MWCASH88 APP download Jili88 vip03 APaldo download 1xBet 58JL Casino 58jl login register Jili scatter gcash OKJL slot jili22.net register login 10phginto APaldo 888 app download 1xBet live FC178 Voucher Code 58jl Jili888 ph Login 365 Jili casino login no deposit bonus JP7 VIP login PHBET Login registration 58jili login registration VVJL online Casino Club app download Jili77 login register Jili88 ph com download KKJILI casino WJ peso app Slot VIP777 BigWin69 app Download Nice88 bet Suhagame philippines Jiliapp Login register Qqjili5 Gogo jili helens ABJILI Casino OKJL download 1xBet login mobile Pogibet 888 777 game Okgames casino login Acegame888 Bet86 promotion Winph99 com m home login JP7 VIP login 20phginto VIPPH register KKJILI casino OKJILI casino Plot777 app download NN777 register bossphl Li789 login Jiligo88 app Mwcbet Download Betjilivip Https www BETSO88 ph 30jili Https www BETSO88 ph Jilievo Club Jili888 register Jili777 download APK JILI77 app download New member register free 100 in GCash 2024 Royal888casino net vip JOLIBET withdrawal MW play casino Jili365 login FB777 Pro Gold JILI Bet99 registration 55BMW red envelope Bet199 login philippines JILI188 casino login register download Phjoin legit or not Bigwin 777 Bigwin pro Apaldo PH pinasgame JILIPARK Login registration JiliApp ph04 Ph143 Jili168 login app Philippines MW Play online casino APK 77tbet register 8k8t Bigwin casino YE7 Download App Ph365 download apk Acejili Ph888 login S888 juan login 63win withdrawal Okbet cc labet 8888.com login password Mwbet188 com login register Philippines MNL168 net login registration kkjili.com download Jili888 Login registration Abc Jili com Download JILIPARK casino login Register Download AbcJili customer service live777. casino Jilievo casino jilievo APP live casino slots jilievo vip Jolibet legit PH888 login Register 888php register 55BMW win Mwbet188 com login register Philippines AbcJili customer service Jili88 ph com app 200Jili App MAXJILI casino ROYAL888 deposit mi777 Jili games free 100 ACEGAME Login Register Jilibet donnalyn login Voslot register Jilino1 live casino 18jl login app apk JILI Vip777 login Phtaya login Super Ace casino login Bigwin 777 Ubet95 free 190 superph.com casino Jili22 NEW com register SG777 win Wjpeso Logo 1xBet login mobile Jili88 casino login register Philippines sign up Okbet cc Agg777 slot login Phv888 login P88jili download jiliapp.com- 777 club Fish game online real money One sabong 888 login password QQJili Taya365 slot mnl168.net login Taya365 download Yes Jili Casino PHMACAO APK free download 365 casino login Bigwin 29 JILISM slot casino apk Wow88 jili777.com ph 888php login 49jili VIP Jilino1 legit SG777 slot Fish game online real money Voslot free 100 18jl login app apk OKJL app Jili22 NEW com register Nice88 free 120 register no deposit bonus Sugal777 app download 288jili PHJOIN VIP com Register Jl77 Casino login KKjili com login Lovejili philippines Pogo88 casino SLOTSGO VIP login password Jili22 net register login password Winph 8 we1win 100 Jili slot 777pnl promo code Sg77701 Bet88 download for Android PH365 casino Royal Club login Jili88 casino login register MWPLAY login register Jilibay Promotion 7SJILI com Register FC777 casino link download Royal meaning in relationship OKBET88 AbcJili customer service 777ph VIP BOSS JILI login Register 200Jili App KKJILI casino login register maxjili Mwcbet legit JILIASIA 50 login Milyon88 com casino login 8k8app17 Royal slot Login Phmacao rest 338 SLOTSGO Ph888 login PHGINTO com login YY777 app Phdream register Jili22 net register login password Lucky Win888 Jiligames API Agila club VIP 77PH VIP Login download Acegame888 register PHMAYA Download Jili88 online casino 7XM Lovejili philippines 63win register Jilimax VOSLOT 777 login 18JL Casino Login Register JILIASIA 50 login 50JILI VIP login registration 7XM com PH Nice888 casino login Register 58jl Jili168 casino login register download Timeph philippines 90jilievo Jili88 casino login register OKBet legit JILI slot game download Bet99 promo code 58jili app 55BMW com PH login password KKjili casino login bet999 How to play Jili in GCash BigWin69 app Download OKJL Milyon88 com casino login phdream 888php register Ph888 PH777 registration bonus JLBET Asia LOVEJILI download Royal Casino login 646 ph login Labet8888 review JLBET Casino Jili888 ph Login Wjpeso Wins JILIMACAO 666 Jiliplay login register JILIAPP com login Download JiliLuck download WIN888 PH JL777 app Voslot777 legit Pkjili login 20jili casino Jolibet login registration Phjoin legit or not Milyon88 com casino register JILI apps download 88jili login register Jili 365 Login register download 11phginto Jili777 vip login Ta777 casino online Swertegames Taya365 download 777PNL online Casino login Mi777 join panalo 123 JILI slot 18jili link Panalo lyrics Jiliplay login philippines yaman88 Bet88 login Jili888 Login registration FF777 TV Ok2bet app Pogibet casino philippines Www jilino1 club WOW JILI secret code AB JILI Jili168 online casino BET99 careers Go88 slot login JILI Vip777 login CG777 Casino link OKBet GCash www.50 jili.com login WINJILI download Lucky bet99 Acegame888 77ph com Login password ACEGAME Login Register ACEGAME casino Swerte88 login password Wj slots casino APALDO Casino Phjoin slot JLBET com JLBET ph Taya777 org login 49jili slot Svip slot Jili77 download APK 200jiliclub Bet199 philippines Jili888 Login registration 88jili withdrawal phjoin.com login register Swerte88 login registration Voslot777 legit Superph11 AAA JILI app download Www jililive com log in VIP777 Casino login download Jili77 download APK Jilibet donnalyn login Register JILICC sign up Pogibet app download www.mwplay888.com download apk Jili68 Jililuck App Download APK Yy777 apk mod Jili77 vipph.com login labet8888.com app Phdream live chat Ph646 login register mobile 7777pub download Jolibet Fortune Tree 90JILI app 18JL login Philippines JLSLOT login password 50JILI fun m.nn777 login 88jili withdrawal PH Cash Casino APK 888PHP Casino LINK Boss jili app download Jili999 login register FB777 download APK Free 100 promotion JILIPARK Download VIP PH casino JILIHOT ALLIN88 login 8K8 com login PHMAYA casino login 58jili withdrawal Ubet95 free 100 no deposit bonus KKJILI online casino M GG777 100jili APP JILI888 slot download PHBET88 Jili Games demo 1xBet OKJL Casino Login Nice888 casino login Register Betso88 App download APK VIP777 app Gcash jili register 1xBet registration 58jili withdrawal Jili63 Suhagame23 218 SLOTSGO AGG777 login Philippines Bay888 login JILIVIP 83444 PHCASH com casino login Jilievo 666 Jili 365 VIP register PHMAYA link PH cash VIP login register Yaman88 casino JP7 VIP We1Win download free rbet.win apk Jili168 casino login register download Milyon88 com casino register 18JL login app 88jili withdrawal AAA Casino jilibet.com register Winjili55 UG777 login app PH777 download Jili365 bet login app Osm Jili GCash 77tbet philippines GI Casino login philippines 88jili login FC178 casino free 100 SG777 Com Login registration Nice88 free 100 Oxjili Royal777 Top777 login FB777 live 200jili login Gogojili legit Yes Jili com login phcash.vip casino Sugal777 app download 58JL app Login Panalo login JILI games APK Lucky99 Slot login Jili scatter gcash 7XM APP download FB JILI casino login download PHMACAO app ROYAL888 Link Alternatif ACEPH Casino - Link 55bmw.com casino Timeph app Osm Jili GCash M GG777 Ubet95 login Jiligo88 CG777 Casino Philippines Tayabet login Boss jili app download YY777 app download Nice88 free 120 register no deposit bonus Bossjili7 XOJILI login 68 PHCASH login ezjili.com download apk Jili 365 VIP APK Milyon88 pro Jili88 casino login register download Jili online casino AgilaPlay Jili scatter gcash 7777pub login CC6 app bonus JK4 online PHJOIN casino Joyjili login register 22phmaya 5JILI Casino login register Betso88 VIP Winph 8 Phmacao rest JILI Slot game download free s888.live legit APALDO Casino link Plot 777 casino login register Philippines Ph646wincom Jili168 login app Philippines KKJILI casino Apaldo PH Phdream live chat Slot VIP777 PH888BET 22 phginto 50JILI APP MWPLAY login register Slotph We1Win apk VIP777 slot login Nice88 PRIZEPH online casino Jilipark App 7XM app for Android Jili58 Jili168 free 100 APALDO 888 CASINO login APaldo download Jiliasia8 com slot game phcash.vip casino OKJL Casino Login YY777 live Jili888 register Winjiliph QQ jili casino login registration Abcjili5 NN777 register Phvip casino Taya 365 casino login OKBet app Osm Jili GCash Nice88 free 100 5JILI Casino login register Bet88 app download 5 55bmw vip Jlph11 JILI slot casino login Nice88 bet sign up bonus JILI Slot game download for Android Abc Jili com Download FF777 TV Peso 63 online casino MILYON88 register free 100 7777pub JILIASIA 50 login CC6 online casino latest version Royal Club apk 1xBet login registration CG777 Casino Philippines 1xBet app Mwcbet net login Password LOVEJILI 21 FBJILI Now use Joyjili Promo code JILI188 casino login register download PHMACAO SuperPH login AGG777 login app Peso 63 online casino filiplay Sugal777 app download Galaxy88casino com login EZJILI Telegram JiliApp ph04 Jilino1 com you can now claim your free 88 PHP download 63win Coupon Code PHDream 8 login register Philippines MNL168 website CC6 online casino register login 3jl app download apk Jlph7 TA777 com Login Register password 5jili11 FF777 casino login Register KKJILI casino login register 10 JILI slot game 3JL login app Jili100 APP Winjili55 Milyon88 info Jilino1 VIP login YE7 bet sign up bonus Apaldo games Wj casino app AbcJili win.ph log in Jili22 VIP 204 SG777 Jl77 Casino login YY777 app download Jilimacao Okjl space Wjevo777 download Ubet95 free 100 no deposit bonus PHMAYA APK Xojili legit 77PH bet login Taya365 pilipinong sariling casino LOVEJILI AAAJILI Casino link Jollibee777 How to play mwplay888 18jl app download jilievo.com login password VIP PH casino mnl168.net login JiliLuck download Win2max casino 777PNL download app Ubet Casino Philippines Win888 Login Jili88 casino login register Philippines sign up Bet99 APK 18JL casino Login register Download Naga888 login JLPH login PHMACAO APK free download How to register Milyon88 Royal888ph com login JiliCC entertainment WINJILI customer service PHBET88 Jili888 Login Philippines SG777 slot FBJILI Jili365 bet login app Ubet95 free 100 no deposit bonus Taya 365 casino login LOVEJILI Jili777 free 150 YE7 casino login register download QQJili 58jili login Download S888 sabong Gi77 casino Login taya777 customer service philippines number 24/7 WINJILI customer service Https www wjevo com promocenter promotioncode Nice99 casino login Phdream 44 login Mi777app 777PNL online Casino login phjl.com casino JILILUCK promo code Pogibet 888 login BigWin Casino legit Jolibet app download Jilli pogibet.com casino JP7 VIP login Ug7772 Phjoy JILIMACAO 123 PH143 online casino jili365.bet download PH cash VIP login register Abc Jili Register Mwgooddomain login 58JL Casino link 365 Jili casino login no deposit bonus JILIEVO Casino 777 60win OKGames casino 49jili VIP kkjili.com app JILIPARK casino login Register Philippines Agila Club casino OKGames GCash OKBet casino online S888 juan login Yaman88 log in Winph99 com m home login Jili88 casino login register Winjiliph CG777 Casino LOGIN Register Ubet Casino Philippines Agilaclub review Is 49jili legit ph646 JLBET link JiliCC entertainment Jilicity withdrawal Ta777 casino online Jili777 login register Philippines JP7 coupon code Milyon88 one Ug7772 Jilibet casino 77PH VIP Login download Jili live login 68 PHCASH 7XM APP download Boss jili login MWCASH88 APP download Jilicity login Acegame888 real money LIKE777 JILILUCK app JiliBay Telegram Bet199 login philippines Ph646wincom PHJOIN login OKGames register JILIASIA withdrawal Panalo login 88jili Login Philippines Wjevo777 download phjl.com casino Fcc777 login Labet8888 login JILI8998 casino login PHJL Login password Jilibay Voucher Code 28k8 Casino P88jili download 49jili apps download Fk777city we1win CG777 Casino login no deposit bonus MW play casino FF777 casino login Register Philippines download JILIAPP com login Download Bet199 PHGINTO com login Bet88 bonus Sw888 withdrawal Vvjl666 Jiliapp 777 Login QQ jili login Jilicity download Jili188 login Philippines Timeph philippines Casino Club app download Nice88 bet login registration Bay888 login PH Cash casino download Jiliko777 Nice88 PH 777pnl Jiliplay login register JILI VIP casino cg777 mwcbets.com login Fbjili2 JILIAPP download 7xm login 77jl.com login JILI Slot game download for Android MWPLAY app superph.com casino Nice88 free 120 WJ peso app Jili58 register 3jl app download apk Betso88 link OKGames login free JILIASIA 888 login 58jl login register Jilibet888 68 PHCASH login Jili88ph net register 55BMW Casino app download APK Abc Jili com Download FB777 register login Philippines Jilievo org m home JiliLuck download jlbet.com login register Jp7 casino login 18JL Casino Login Register YE7 casino APK prizeph Boss jili login Royal logo FC178 casino - 777 slot games Taya777 pilipinong sariling casino Ph888 MWPLAY app @Plot777_casino CG777 login BOSS JILI login Register JILI PH646 login Vvjlstore Mi777 casino login Download Okgames redeem code 50JILI VIP login registration Bet88 login AGG777 login Philippines JILIMACAO Yesjili com legit P88jili com login OKBET88 Gold JILI VIP PH casino VIP PH log in bet88.ph legit kkjili.com app JiliLuck Login JILI Vip777 login 63win withdrawal bet999.ph login m.nn777 login 58JL 8k8app17