-
Notifications
You must be signed in to change notification settings - Fork 0
/
raw-core.php
64 lines (56 loc) · 1.63 KB
/
raw-core.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?php
/**
*
* Plugin Name: Raw Core
* Plugin URI: http://www.rawsta.de
* Description: Schaltet nicht benötigte WordPress Funktionen ab und bildet eine Basis für unsere Themes.
* Version: 0.3.0
*
* Author: Sebastian Fiele
* Author URI: http://www.rawsta.de
* License: GPL-3
* License URI: https://www.gnu.org/licenses/gpl-3.0.txt
*
* @package rawcore
* @since 0.3.0
* @copyright Copyright (c) 2020, rawsta
* @license GPL-3
*
* Text Domain: raw_core
*/
/* current functions:
- Versionsinfo abschalten
- Login Fehler begrenzen
- Login Logo setzen
- Login Logo URL setzen
- Login Logolink titel setzen
- seitensprung bei -read more- abschalten
- Shortcodes in Text-Widgets
- WordPress Emojis entfernen
- Weitere Media Formate freigeben
- RSS-Feeds abschalten
- Bilder in RSS Feeds anzeigen
- Dashboard Widgets abschalten
- Eigenes Dashboard Widget anlegen
- Dashboard Logo setzen
- Admin Footer Text setzen
- Dashicons aktivieren
- Self-Pingbacks abschalten
- Trackbacks abschalten
- Böse URL anfragen sperren
*/
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
// Plugin directory
define( 'RAW_DIR' , plugin_dir_path( __FILE__ ) );
// Current plugin version, manually defined for performance reasons.
define( 'RAWCORE_VERSION', '0.3.3' );
//include sections
require_once( RAW_DIR . '/inc/general.php' );
require_once( RAW_DIR . '/inc/wp-cleanup.php' );
require_once( RAW_DIR . '/inc/backend-branding.php' );
require_once( RAW_DIR . '/inc/rss-feeds.php' );
require_once( RAW_DIR . '/inc/kill-trackbacks.php' );
?>