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

0.3.2 2025-09-18 12:44 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
+   ],

];