Guest User

Untitled

a guest
Jul 4th, 2022
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.86 KB | None | 0 0
  1. <?php
  2. /*
  3. *
  4. * @ This file is created by http://DeZender.Net
  5. * @ deZender (PHP5 Decoder for ionCube Encoder)
  6. *
  7. * @ Version : 3.5.0.0
  8. * @ Author : DeZender
  9. * @ Release on : 22.06.2018
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. if (file_exists(TEMPLATEPATH . '/lisans.php')) {
  15. require 'lisans.php';
  16. $lisans['site'] = getenv('HTTP_HOST');
  17.  
  18. if (substr($lisans['site'], 0, 4) == 'www.') {
  19. $lisans['site'] = substr($lisans['site'], 4);
  20. }
  21.  
  22. $lisans['hash'] = wordwrap(strtoupper(md5(base64_encode(sha1(md5(crc32(md5(sha1($lisans['site'])))))))), 4, '-', true);
  23.  
  24. if ($lisans['hash'] !== $lisans_anahtar) {
  25. exit('Lisans anahtarınız bu site için geçerli değildir.');
  26. }
  27.  
  28. unset($lisans);
  29. include_once 'framework/diziplus.php';
  30. include_once 'framework/features.php';
  31. include_once 'framework/tema-dili.php';
  32. include_once 'framework/widgets/listpopular.php';
  33. include_once 'framework/tema-kurulumu.php';
  34. add_filter('show_admin_bar', '__return_false');
  35. remove_action('personal_options', '_admin_bar_preferences');
  36. remove_action('wp_head', 'rel_canonical');
  37. global $wp_rewrite;
  38. $wp_rewrite->author_base = 'profil';
  39. add_action('init', 'register_my_menus');
  40. function register_my_menus()
  41. {
  42. register_nav_menus(array('header-nav' => __('diziplus Header Menüsü')));
  43. }
  44.  
  45. register_sidebar(array('name' => 'Anasayfa Bölümü', 'id' => 'anasayfa', 'before_widget' => '<div class="incontent">', 'after_widget' => '</div>', 'before_title' => '<div class="yazitip">', 'after_title' => '</div>'));
  46. function diziplus_meta($isim, $alan, $sonra)
  47. {
  48. global $post;
  49. $ozel = get_post_meta($post->ID, '' . $alan . '', true);
  50.  
  51. if ($ozel != '') {
  52. echo '<p><span>' . $isim . '</span>: ' . $ozel . '</p>';
  53. ........................................................................
  54. ........................................
  55. .............
Add Comment
Please, Sign In to add comment