establish base code
This commit is contained in:
18
fw-store-embed.php
Normal file
18
fw-store-embed.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
/**
|
||||
* Plugin Name: Fourthwall Store Embed
|
||||
* Plugin URL: https://cybercove.io/
|
||||
* Description: Embed Fourthwall Store in WordPress
|
||||
* Version: 1.0.0.
|
||||
* Author: Joshua Knapp
|
||||
* Text Domain: fourthwall_text_domain
|
||||
*
|
||||
*/
|
||||
|
||||
include("libs/settings.php");
|
||||
include("libs/shortcode.php");
|
||||
function set_fw_store_embed_css() {
|
||||
wp_enqueue_style('fw-embed-style', plugin_dir_url( __FILE__ ). 'css/fw-store-embed.css', array(),null);
|
||||
}
|
||||
|
||||
add_action( 'wp_enqueue_scripts', 'set_fw_store_embed_css' );
|
Reference in New Issue
Block a user