-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
43 lines (34 loc) · 1.19 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?php
/**
* Temajet Core
*
* @package Temajet
* @author Emir Topaloğlu
* @copyright 2021 Temajet
* @license GPL-2.0-or-later
*
* @wordpress-plugin
* Plugin Name: Jet - Döviz, Altın, Kripto
* Plugin URI: https://temajet.com/
* Description: Temajet teması için döviz, altın ve kripto para birimi fiyatını gösteren bileşen ve sayfa şablonu için eklenti.
* Version: 1.0.0
* Requires at least: 5.2
* Requires PHP: 7.2
* Author: Temajet
* Author URI: https://temajet.com/
* Text Domain: jet-currency
* License: GPL v2 or later
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
*/
defined( 'ABSPATH' ) || exit; // Exit directly
// Plugins Files
require_once( 'doviz-widget.php' );
require_once( 'crypto-widget.php' );
// Styles & Scripts
function temajet_core_scripts() {
wp_register_style( 'jet-currency', plugins_url('style.css', __FILE__) );
wp_enqueue_style( 'jet-currency' );
wp_enqueue_script( 'jet-currency', plugin_dir_url( __FILE__ ) . 'main.js', array('jquery'), true, true );
}
add_action('wp_enqueue_scripts', 'temajet_core_scripts');
?>