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

20 lines
554 B
PHP
Raw Normal View History

2024-12-27 14:10:25 -08:00
<?php
/**
* Plugin Name: Fourthwall Store Embed
* Plugin URL: https://cybercove.io/
* Description: Embed Fourthwall Store in WordPress
* Version: {auto_update_value_on_deploy}
2024-12-27 14:10:25 -08:00
* Author: Joshua Knapp
* Text Domain: fourthwall_text_domain
*
*/
include("libs/self-update.php");
2024-12-27 14:10:25 -08:00
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' );