fourth-wall-embed-wp/fw-store-embed.php

19 lines
498 B
PHP
Raw Permalink Normal View History

2024-12-27 22:10:25 +00:00
<?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' );