itinerisltd / acorn-socials
Social account and sharable social post links management via WordPress
Package info
github.com/ItinerisLtd/acorn-socials
Type:wordpress-plugin
pkg:composer/itinerisltd/acorn-socials
0.6.0
2026-06-24 09:37 UTC
Requires
- php: ^8.4.1
Requires (Dev)
- itinerisltd/itineris-wp-coding-standards: ^1.0
- laravel/facade-documenter: dev-main
- roots/acorn: ^4.3 || ^5.0 || ^6.0
- roots/wordpress: ^6.8
- wpackagist-plugin/kirki: ^5.1
This package is auto-updated.
Last update: 2026-06-24 09:38:07 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
+ ],
];