itinerisltd / acorn-socials
Social account and sharable social post links management via WordPress
Installs: 1
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 1
Type:wordpress-plugin
pkg:composer/itinerisltd/acorn-socials
Requires
- php: ^8.2
Requires (Dev)
- itinerisltd/itineris-wp-coding-standards: ^1.0
- laravel/facade-documenter: dev-main
- roots/acorn: ^4.3
- roots/wordpress: ^6.7
- wpackagist-plugin/kirki: ^5.1
- dev-main
- 0.3.2
- 0.3.1
- 0.3.0
- 0.2.0
- 0.1.0
- dev-issues/12/clipboard-entry-should-not-have-url
- dev-revert-10-issues/9/Define-onclick-attribute-for-sharables
- dev-issues/9/Define-onclick-attribute-for-sharables
- dev-issues/6/Adding-new-social-entries
- dev-review-changes
- dev-Social-icon-style-select-not-working-well
- dev-dependabot/composer/roots/acorn-5.0.5
This package is auto-updated.
Last update: 2025-11-12 14:21:46 UTC
README
About
Social account and sharable social links management via customizer.
Installation
You can install this package with Composer:
composer require itinerisltd/acorn-socials
You can publish the config file with:
$ wp acorn vendor:publish --provider="Itineris\AcornSocials\Providers\AcornSocialsServiceProvider"
Excluding/Including Socials
Edit config/acorn-socials.php to exclude/include Socials
<?php
declare(strict_types=1);
return [
/*
|--------------------------------------------------------------------------
| Socials
|--------------------------------------------------------------------------
|
| Here, you can define which socials will be used only
|
*/
- 'socials' => [],
+ 'socials' => [
+ 'facebook' => [
+ 'social' => true/false, // Controls accessibility on AcornSocials::getSocialPages()
+ 'sharable' => true/false, // Controls accessibility on AcornSocials::getSharableSocials()
+ ],
+ 'email' => [], // Empty array will make accessible on both
+ ],
];