WP Manifestindependent plugin directory
manifest / social / avidly-social-share

Avidly Social Share

Add basic, cookie free social share icons to site as block.

by Avidly · github.com/avidlywordpress/avidly-social-share

0stars
0forks

Install

No release zip yet. The repository archive installs, but the folder name will carry the branch suffix and updates will not flow:

wp plugin install https://github.com/avidlywordpress/avidly-social-share/archive/refs/heads/main.zip

Readme

Avidly Social Share

A WordPress pluging to add social share buttons to your WordPress theme or page/post.

Installation

  1. Upload the plugin files to the /wp-content/plugins/avidly-social-share directory, or install the plugin through the WordPress plugins screen directly.
  2. Activate the plugin through the 'Plugins' screen in WordPress

Usage

Add social share icons to you theme

if ( function_exists( 'avidly_get_social_share' ) ) {
    echo avidly_get_social_share();
}

Or add social share icons to your page or post by adding Avidly Social Share gutenberg block where ever you want to.

You can choose which icons to show in Settings > Avidly Social Share page.

Development

Get packages

npm install

Run development (does not compress the code so it is easier to read)

npm run start

Run production build (compresses the code down so it downloads faster)

npm run build

Read the full README on GitHub →