You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
388 B
17 lines
388 B
<?php
|
|
/*
|
|
* Plugin Name: WP Social Icons
|
|
* Description: A plugin for displaying social media links with icons on your WordPress website
|
|
* Author: Mike Ochmann <miko@massivedynamic.eu>
|
|
* Author URI: https://mike-ochmann.de
|
|
* License: MIT
|
|
* Text Domain: wpsocialicons
|
|
* Domain Path: /lang
|
|
* Version: 0.0.1
|
|
*/
|
|
|
|
require_once("src/Plugin.php");
|
|
|
|
use wpsocialicons\Plugin;
|
|
|
|
new Plugin; |