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
|
2025-04-22 13:35:47 -07:00
|
|
|
* Version: {auto_update_value_on_deploy}
|
2024-12-27 14:10:25 -08:00
|
|
|
* Author: Joshua Knapp
|
|
|
|
* Text Domain: fourthwall_text_domain
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2025-04-22 13:35:47 -07:00
|
|
|
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' );
|