Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- *
- * @ This file is created by http://DeZender.Net
- * @ deZender (PHP5 Decoder for ionCube Encoder)
- *
- * @ Version : 3.0.8.0
- * @ Author : DeZender
- * @ Release on : 25.09.2017
- * @ Official site : http://DeZender.Net
- *
- */
- function get_domain($url)
- {
- $pieces = parse_url( $url );
- $domain = ((isset( $pieces['host'] ) ? $pieces['host'] : ''));
- if (preg_match( '/(?P<domain>[a-z0-9][a-z0-9\\-]{1,63}\\.[a-z\\.]{2,6})$/i', $domain, $regs )) {
- return $regs['domain'];
- }
- }
- function nonSongCats()
- {
- return '-' . str_replace( ',', ',-', xoption( 'nonSongCats' ) );
- }
- function add_nofollow_cat($text)
- {
- $text = str_replace( 'rel="category tag"', '', $text );
- return $text;
- }
- function adminBarMenu()
- {
- global $wp_admin_bar;
- if (!(is_super_admin( )) || !(is_admin_bar_showing( ))) {
- return;
- }
- $wp_admin_bar->add_menu( array(
- 'id' => 'artists',
- 'title' => 'Sanatçılar',
- 'href' => get_bloginfo( 'url' ) . '/wp-admin/edit-tags.php?taxonomy=sanatci'
- ) );
- $wp_admin_bar->add_menu( array(
- 'id' => 'themesettings',
- 'title' => 'Safir Panel - Tema Ayarları',
- 'href' => get_bloginfo( 'url' ) . '/wp-admin/admin.php?page=themeoptions.php'
- ) );
- }
- function register_my_menus()
- {
- register_nav_menus( array( 'topmenu' => 'Üst Menü' ) );
- register_nav_menus( array( 'mainmenu' => 'Ana Menü' ) );
- register_nav_menus( array( 'footermenu' => 'Alt Menü' ) );
- }
- function remove_pages_from_search()
- {
- global $wp_post_types;
- $wp_post_types['page']->exclude_from_search = true;
- .......................................................................
- ................................
- .......
Advertisement
Add Comment
Please, Sign In to add comment