Advertisement
plas71k

@robinex => ioncube 6.5 file 2 => decoded

Apr 8th, 2013
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 19.06 KB | None | 0 0
  1. <?php
  2. /*
  3. * @ Pirate-Sky Crew :: PHP Decoder v2
  4. * @ Author: pLa$71k
  5. * @ Web: http://pirate-sky.com
  6. * @ Pirate-Sky Crew © 2008 - 2013
  7. */
  8.  
  9. function yakutlisans()
  10. {
  11.     $site  = get_bloginfo("home");
  12.     $site1 = "http://www.gameschrome.net";
  13.     $site2 = "http://gameschrome.net";
  14.     if ($site != $site1 && $site != $site2) {
  15.         echo "Lutfen lisans al?n?z, Msn: ahmetozdemir@mail.com.";
  16.         exit();
  17.     }
  18. }
  19.  
  20. function display_oynanmis()
  21. {
  22.     $oynanma = getpostviews(get_the_id());
  23.     return $oynanma;
  24. }
  25.  
  26. function oyun_baslik($text)
  27. {
  28.     $chars_limit = 15;
  29.     $chars_text  = strlen($text);
  30.     $text        = $text . " ";
  31.     $text        = substr($text, 0, $chars_limit);
  32.     $text        = substr($text, 0, strrpos($text, " "));
  33.     if ($chars_limit < $chars_text) {
  34.         $text = $text . "";
  35.     }
  36.     return $text;
  37. }
  38.  
  39. function getpostviews($postID)
  40. {
  41.     $count_key = "post_views_count";
  42.     $count     = get_post_meta($postID, $count_key, true);
  43.     if ($count == "") {
  44.         delete_post_meta($postID, $count_key);
  45.         add_post_meta($postID, $count_key, "0");
  46.         return "0";
  47.     }
  48.     return $count . "";
  49. }
  50.  
  51. function setpostviews($postID)
  52. {
  53.     $count_key = "post_views_count";
  54.     $count     = get_post_meta($postID, $count_key, true);
  55.     if ($count == "") {
  56.         $count = 0;
  57.         delete_post_meta($postID, $count_key);
  58.         add_post_meta($postID, $count_key, "0");
  59.     } else {
  60.         ++$count;
  61.         update_post_meta($postID, $count_key, $count);
  62.     }
  63. }
  64.  
  65. function posts_column_views($defaults)
  66. {
  67.     $defaults['post_views'] = __("Incelendi");
  68.     return $defaults;
  69. }
  70.  
  71. function posts_custom_column_views($column_name, $id)
  72. {
  73.     if ($column_name === "post_views") {
  74.         echo getpostviews(get_the_id());
  75.     }
  76. }
  77.  
  78. function fb_search_filter($query)
  79. {
  80.     if (!$query->is_admin && $query->is_search) {
  81.         $query->set("post_type", array(
  82.             "post"
  83.         ));
  84.     }
  85.     return $query;
  86. }
  87.  
  88. function get_paged_navigation($number_of_pages_to_show = 9)
  89. {
  90.     $current_page_number = ( integer ) $GLOBALS['paged'];
  91.     $number_of_pages     = ( integer ) $GLOBALS['wp_query']->max_num_pages;
  92.     $first_txt           = "«";
  93.     $previous_txt        = "‹";
  94.     $next_txt            = "›";
  95.     $last_txt            = "»";
  96.     if ($number_of_pages < 2) {
  97.         return true;
  98.     }
  99.     if (!$current_page_number) {
  100.         $current_page_number = 1;
  101.     }
  102.     $last_head_page_number = ceil($number_of_pages_to_show / 2);
  103.     $firt_tail_page_number = $number_of_pages - floor($number_of_pages_to_show / 2);
  104.     if ($current_page_number <= $last_head_page_number) {
  105.         $page_first_shown = 1;
  106.     } else if ($firt_tail_page_number <= $current_page_number) {
  107.         $page_first_shown = $number_of_pages - $number_of_pages_to_show + 1;
  108.     } else {
  109.         $page_first_shown = $current_page_number - ceil($number_of_pages_to_show / 2) + 1;
  110.     }
  111.     if ($page_first_shown != 1) {
  112.         echo "<span>";
  113.         echo get_previous_posts_link($previous_txt);
  114.         echo " ";
  115.         echo "</span>";
  116.     }
  117.     $i = 0;
  118.     while ($i < $number_of_pages_to_show && $i < $number_of_pages) {
  119.         echo "<span><a class=\"current\" href=\"";
  120.         echo get_pagenum_link($page_first_shown + $i);
  121.         echo "\">";
  122.         echo $page_first_shown + $i;
  123.         echo "</a></span> ";
  124.         ++$i;
  125.     }
  126.     if ($page_first_shown + $number_of_pages_to_show < $number_of_pages + 1) {
  127.         echo "<span>";
  128.         echo get_next_posts_link($next_txt);
  129.         echo " ";
  130.         echo "</span>";
  131.     }
  132. }
  133.  
  134. function mytheme_add_box()
  135. {
  136.     global $meta_box;
  137.     add_meta_box($meta_box['id'], $meta_box['title'], "mytheme_show_box", $meta_box['page'], $meta_box['context'], $meta_box['priority']);
  138. }
  139.  
  140. function mytheme_show_box()
  141. {
  142.     global $meta_box;
  143.     global $post;
  144.     echo "<input type=\"hidden\" name=\"mytheme_meta_box_nonce\" value=\"";
  145.     echo wp_create_nonce(basename(__FILE__));
  146.     echo "\" />";
  147.     foreach ($meta_box['fields'] as $field) {
  148.         $meta = get_post_meta($post->ID, $field['id'], true);
  149.         echo "<tr>";
  150.         echo "<th style=\"width:20%\"><label for=\"";
  151.         echo $field['id'];
  152.         echo "\">";
  153.         echo $field['name'];
  154.         echo "</label></th>";
  155.         echo "<td>";
  156.         switch ($field['type']) {
  157.             case "checkbox":
  158.                 echo "<input type=\"checkbox\" name=\"";
  159.                 echo $field['id'];
  160.                 echo "\" id=\"";
  161.                 echo $field['id'];
  162.                 echo "\"";
  163.                 echo $meta ? " checked=\"checked\"" : "";
  164.                 echo " />";
  165.         }
  166.         echo "<td>";
  167.         echo "</tr>";
  168.     }
  169. }
  170.  
  171. function mytheme_save_data($post_id)
  172. {
  173.     global $meta_box;
  174.     if (!wp_verify_nonce($_POST['mytheme_meta_box_nonce'], basename(__FILE__))) {
  175.         return $post_id;
  176.     }
  177.     if (defined("DOING_AUTOSAVE") && DOING_AUTOSAVE) {
  178.         return $post_id;
  179.     }
  180.     if ("page" == $_POST['post_type']) {
  181.         return $post_id;
  182.     }
  183.     if (!current_user_can("edit_page", $post_id) && !current_user_can("edit_post", $post_id)) {
  184.         return $post_id;
  185.     }
  186.     foreach ($meta_box['fields'] as $field) {
  187.         $old = get_post_meta($post_id, $field['id'], true);
  188.         $new = $_POST[$field['id']];
  189.         if ($new && $new != $old) {
  190.             update_post_meta($post_id, $field['id'], $new);
  191.         } else if ("" == $new && $old) {
  192.             delete_post_meta($post_id, $field['id'], $old);
  193.         }
  194.     }
  195. }
  196.  
  197. function ii_create_meta_box()
  198. {
  199.     add_meta_box("post-meta-boxes", __("Oyun Ekleme"), "post_meta_boxes", "post", "normal", "core");
  200. }
  201.  
  202. function ii_post_meta_boxes()
  203. {
  204.     $meta_boxes = array(
  205.         "resim" => array(
  206.             "name" => "resim",
  207.             "title" => __("Resim Adresi:"),
  208.             "type" => "text",
  209.             "desc" => ""
  210.         ),
  211.         "oyun" => array(
  212.             "name" => "oyun",
  213.             "title" => __("Oyun Swf Adresi:"),
  214.             "type" => "text",
  215.             "desc" => "Eklediginiz oyun swf uzant?l? ise buraya ekleyin."
  216.         ),
  217.         "dcr" => array(
  218.             "name" => "dcr",
  219.             "title" => __("Oyun DCR Adresi:"),
  220.             "type" => "text",
  221.             "desc" => "Eklediginiz oyun dcr uzant?l? ise buraya ekleyin."
  222.         ),
  223.         "unity" => array(
  224.             "name" => "unity",
  225.             "title" => __("Oyun Unity Adresi:"),
  226.             "type" => "text",
  227.             "desc" => "Eklediginiz oyun .unidy3d uzant?l? ise buraya ekleyin."
  228.         ),
  229.         "frame" => array(
  230.             "name" => "frame",
  231.             "title" => __("Oyun Iframe Adresi:"),
  232.             "type" => "text",
  233.             "desc" => "Oyunu iframe olarak ekleyecekseniz buraya ekleyin."
  234.         )
  235.     );
  236.     return apply_filters("ii_post_meta_boxes", $meta_boxes);
  237. }
  238.  
  239. function ii_page_meta_boxes()
  240. {
  241.     $meta_boxes = array(
  242.         "teaser_text" => array(
  243.             "name" => "teaser_text",
  244.             "title" => __("Teaser"),
  245.             "type" => "text",
  246.             "desc" => "Here you can enter some short text for header teaser on a page."
  247.         )
  248.     );
  249.     return apply_filters("ii_page_meta_boxes", $meta_boxes);
  250. }
  251.  
  252. function post_meta_boxes()
  253. {
  254.     global $post;
  255.     $meta_boxes = ii_post_meta_boxes();
  256.     echo "\t<table class=\"form-table\">\r\n\t";
  257.     foreach ($meta_boxes as $meta) {
  258.         $value = get_post_meta($post->ID, $meta['name'], true);
  259.         if ($meta['type'] == "text") {
  260.             get_meta_text_input($meta, $value);
  261.         } else if ($meta['type'] == "textarea") {
  262.             get_meta_textarea($meta, $value);
  263.         } else if ($meta['type'] == "select") {
  264.             get_meta_select($meta, $value);
  265.         }
  266.     }
  267.     echo "\t</table>\r\n";
  268. }
  269.  
  270. function page_meta_boxes()
  271. {
  272.     global $post;
  273.     $meta_boxes = ii_page_meta_boxes();
  274.     echo "\t<table class=\"form-table\">\r\n\t";
  275.     foreach ($meta_boxes as $meta) {
  276.         $value = stripslashes(get_post_meta($post->ID, $meta['name'], true));
  277.         if ($meta['type'] == "text") {
  278.             get_meta_text_input($meta, $value);
  279.         } else if ($meta['type'] == "textarea") {
  280.             get_meta_textarea($meta, $value);
  281.         } else if ($meta['type'] == "select") {
  282.             get_meta_select($meta, $value);
  283.         }
  284.     }
  285.     echo "\t</table>\r\n";
  286. }
  287.  
  288. function get_meta_text_input($args = array(), $value = false)
  289. {
  290.     extract($args);
  291.     echo "\t<tr>\r\n\t\t<th style=\"width:20%;\">\r\n\t\t\t<label for=\"";
  292.     echo $name;
  293.     echo "\">";
  294.     echo $title;
  295.     echo "</label>\r\n\t\t</th>\r\n\t\t<td>\r\n\t\t\t<input type=\"text\" name=\"";
  296.     echo $name;
  297.     echo "\" id=\"";
  298.     echo $name;
  299.     echo "\" value=\"";
  300.     echo wp_specialchars($value, 1);
  301.     echo "\" size=\"30\" tabindex=\"30\" style=\"width: 97%;margin-top:-3px;\" />\r\n\t\t\t<input type=\"hidden\" name=\"";
  302.     echo $name;
  303.     echo "_noncename\" id=\"";
  304.     echo $name;
  305.     echo "_noncename\" value=\"";
  306.     echo wp_create_nonce(plugin_basename(__FILE__));
  307.     echo "\" />\r\n\t\t\t<br />\r\n\t\t\t<p class=\"description\">";
  308.     echo $desc;
  309.     echo "</p>\r\n\t\t</td>\r\n\t</tr>\r\n\t";
  310. }
  311.  
  312. function get_meta_select($args = array(), $value = false)
  313. {
  314.     extract($args);
  315.     echo "\t<tr>\r\n\t\t<th style=\"width:20%;\">\r\n\t\t\t<label for=\"";
  316.     echo $name;
  317.     echo "\">";
  318.     echo $title;
  319.     echo "</label>\r\n\t\t</th>\r\n\t\t<td>\r\n\t\t\t";
  320.     echo "<s";
  321.     echo "elect name=\"";
  322.     echo $name;
  323.     echo "\" id=\"";
  324.     echo $name;
  325.     echo "\">\r\n\t\t\t";
  326.     foreach ($options as $option) {
  327.         echo "\t\t\t\t<option ";
  328.         if (htmlentities($value, ENT_QUOTES) == $option) {
  329.             echo " selected=\"selected\"";
  330.         }
  331.         echo ">\r\n\t\t\t\t\t";
  332.         echo $option;
  333.         echo "\t\t\t\t</option>\r\n\t\t\t";
  334.     }
  335.     echo "\t\t\t</select>\r\n\t\t\t<input type=\"hidden\" name=\"";
  336.     echo $name;
  337.     echo "_noncename\" id=\"";
  338.     echo $name;
  339.     echo "_noncename\" value=\"";
  340.     echo wp_create_nonce(plugin_basename(__FILE__));
  341.     echo "\" />\r\n\t\t</td>\r\n\t</tr>\r\n\t";
  342. }
  343.  
  344. function get_meta_textarea($args = array(), $value = false)
  345. {
  346.     extract($args);
  347.     echo "\t<tr>\r\n\t\t<th style=\"width:20%;\">\r\n\t\t\t<label for=\"";
  348.     echo $name;
  349.     echo "\">";
  350.     echo $title;
  351.     echo "</label>\r\n\t\t</th>\r\n\t\t<td>\r\n\t\t\t<textarea name=\"";
  352.     echo $name;
  353.     echo "\" id=\"";
  354.     echo $name;
  355.     echo "\" cols=\"60\" rows=\"4\" tabindex=\"30\" style=\"width: 97%;margin-top:-3px;\">";
  356.     echo wp_specialchars($value, 1);
  357.     echo "</textarea>\r\n\t\t\t<input type=\"hidden\" name=\"";
  358.     echo $name;
  359.     echo "_noncename\" id=\"";
  360.     echo $name;
  361.     echo "_noncename\" value=\"";
  362.     echo wp_create_nonce(plugin_basename(__FILE__));
  363.     echo "\" />\r\n\t\t</td>\r\n\t</tr>\r\n\t";
  364. }
  365.  
  366. function ii_save_meta_data($post_id)
  367. {
  368.     global $post;
  369.     if ("page" == $_POST['post_type']) {
  370.         $meta_boxes = array_merge(ii_page_meta_boxes());
  371.     } else {
  372.         $meta_boxes = array_merge(ii_post_meta_boxes());
  373.     }
  374.     foreach ($meta_boxes as $meta_box) {
  375.         if (!wp_verify_nonce($_POST[$meta_box['name'] . "_noncename"], plugin_basename(__FILE__))) {
  376.             return $post_id;
  377.         }
  378.         if ("page" == $_POST['post_type'] && !current_user_can("edit_page", $post_id)) {
  379.             return $post_id;
  380.         }
  381.         if ("post" == $_POST['post_type'] && !current_user_can("edit_post", $post_id)) {
  382.             return $post_id;
  383.         }
  384.         $data = stripslashes($_POST[$meta_box['name']]);
  385.         if (get_post_meta($post_id, $meta_box['name']) == "") {
  386.             add_post_meta($post_id, $meta_box['name'], $data, true);
  387.         } else if ($data != get_post_meta($post_id, $meta_box['name'], true)) {
  388.             update_post_meta($post_id, $meta_box['name'], $data);
  389.         } else if ($data == "") {
  390.             delete_post_meta($post_id, $meta_box['name'], get_post_meta($post_id, $meta_box['name'], true));
  391.         }
  392.     }
  393. }
  394.  
  395. include("includes/update_notifier.php");
  396. add_shortcode("oynanma", "display_oynanmis");
  397. add_filter("manage_posts_columns", "posts_column_views");
  398. add_action("manage_posts_custom_column", "posts_custom_column_views", 5, 2);
  399. add_filter("pre_get_posts", "fb_search_filter");
  400. require_once(TEMPLATEPATH . "/admin/admin-functions.php");
  401. require_once(TEMPLATEPATH . "/admin/admin-interface.php");
  402. require_once(TEMPLATEPATH . "/admin/theme-settings.php");
  403. $prefix   = "tus_";
  404. $meta_box = array(
  405.     "id" => "my-meta-box",
  406.     "title" => "Tuslar",
  407.     "page" => "post",
  408.     "context" => "normal",
  409.     "priority" => "high",
  410.     "fields" => array(
  411.         array(
  412.             "name" => "<center>&nbsp;TUSLAR AKTIF&nbsp;",
  413.             "id" => $prefix . "key_aktif",
  414.             "type" => "checkbox"
  415.         ),
  416.         array(
  417.             "name" => "</center><br/>&nbsp;YON&nbsp;",
  418.             "id" => $prefix . "key_yon",
  419.             "type" => "checkbox"
  420.         ),
  421.         array(
  422.             "name" => "&nbsp;FARE&nbsp;",
  423.             "id" => $prefix . "key_fare",
  424.             "type" => "checkbox"
  425.         ),
  426.         array(
  427.             "name" => "&nbsp;AWSD&nbsp;",
  428.             "id" => $prefix . "key_awsd",
  429.             "type" => "checkbox"
  430.         ),
  431.         array(
  432.             "name" => "&nbsp;BOSLUK&nbsp;",
  433.             "id" => $prefix . "key_bosluk",
  434.             "type" => "checkbox"
  435.         ),
  436.         array(
  437.             "name" => "&nbsp;SHIFT&nbsp;",
  438.             "id" => $prefix . "key_shift",
  439.             "type" => "checkbox"
  440.         ),
  441.         array(
  442.             "name" => "&nbsp;ALT&nbsp;",
  443.             "id" => $prefix . "key_alt",
  444.             "type" => "checkbox"
  445.         ),
  446.         array(
  447.             "name" => "&nbsp;CTRL&nbsp;",
  448.             "id" => $prefix . "key_ctrl",
  449.             "type" => "checkbox"
  450.         ),
  451.         array(
  452.             "name" => "&nbsp;0&nbsp;",
  453.             "id" => $prefix . "key_0",
  454.             "type" => "checkbox"
  455.         ),
  456.         array(
  457.             "name" => "&nbsp;1&nbsp;",
  458.             "id" => $prefix . "key_1",
  459.             "type" => "checkbox"
  460.         ),
  461.         array(
  462.             "name" => "&nbsp;2&nbsp;",
  463.             "id" => $prefix . "key_2",
  464.             "type" => "checkbox"
  465.         ),
  466.         array(
  467.             "name" => "&nbsp;3&nbsp;",
  468.             "id" => $prefix . "key_3",
  469.             "type" => "checkbox"
  470.         ),
  471.         array(
  472.             "name" => "&nbsp;4&nbsp;",
  473.             "id" => $prefix . "key_4",
  474.             "type" => "checkbox"
  475.         ),
  476.         array(
  477.             "name" => "&nbsp;5&nbsp;",
  478.             "id" => $prefix . "key_5",
  479.             "type" => "checkbox"
  480.         ),
  481.         array(
  482.             "name" => "&nbsp;6&nbsp;",
  483.             "id" => $prefix . "key_6",
  484.             "type" => "checkbox"
  485.         ),
  486.         array(
  487.             "name" => "&nbsp;7&nbsp;",
  488.             "id" => $prefix . "key_7",
  489.             "type" => "checkbox"
  490.         ),
  491.         array(
  492.             "name" => "&nbsp;8&nbsp;",
  493.             "id" => $prefix . "key_8",
  494.             "type" => "checkbox"
  495.         ),
  496.         array(
  497.             "name" => "&nbsp;9&nbsp;",
  498.             "id" => $prefix . "key_9",
  499.             "type" => "checkbox"
  500.         ),
  501.         array(
  502.             "name" => "&nbsp;A&nbsp;",
  503.             "id" => $prefix . "key_a",
  504.             "type" => "checkbox"
  505.         ),
  506.         array(
  507.             "name" => "&nbsp;B&nbsp;",
  508.             "id" => $prefix . "key_b",
  509.             "type" => "checkbox"
  510.         ),
  511.         array(
  512.             "name" => "&nbsp;C&nbsp;",
  513.             "id" => $prefix . "key_c",
  514.             "type" => "checkbox"
  515.         ),
  516.         array(
  517.             "name" => "&nbsp;D&nbsp;",
  518.             "id" => $prefix . "key_d",
  519.             "type" => "checkbox"
  520.         ),
  521.         array(
  522.             "name" => "&nbsp;E&nbsp;",
  523.             "id" => $prefix . "key_e",
  524.             "type" => "checkbox"
  525.         ),
  526.         array(
  527.             "name" => "&nbsp;F&nbsp;",
  528.             "id" => $prefix . "key_f",
  529.             "type" => "checkbox"
  530.         ),
  531.         array(
  532.             "name" => "&nbsp;G&nbsp;",
  533.             "id" => $prefix . "key_g",
  534.             "type" => "checkbox"
  535.         ),
  536.         array(
  537.             "name" => "&nbsp;H&nbsp;",
  538.             "id" => $prefix . "key_h",
  539.             "type" => "checkbox"
  540.         ),
  541.         array(
  542.             "name" => "&nbsp;I&nbsp;",
  543.             "id" => $prefix . "key_i",
  544.             "type" => "checkbox"
  545.         ),
  546.         array(
  547.             "name" => "&nbsp;J&nbsp;",
  548.             "id" => $prefix . "key_j",
  549.             "type" => "checkbox"
  550.         ),
  551.         array(
  552.             "name" => "&nbsp;K&nbsp;",
  553.             "id" => $prefix . "key_k",
  554.             "type" => "checkbox"
  555.         ),
  556.         array(
  557.             "name" => "&nbsp;L&nbsp;",
  558.             "id" => $prefix . "key_l",
  559.             "type" => "checkbox"
  560.         ),
  561.         array(
  562.             "name" => "&nbsp;M&nbsp;",
  563.             "id" => $prefix . "key_m",
  564.             "type" => "checkbox"
  565.         ),
  566.         array(
  567.             "name" => "&nbsp;N&nbsp;",
  568.             "id" => $prefix . "key_n",
  569.             "type" => "checkbox"
  570.         ),
  571.         array(
  572.             "name" => "&nbsp;O&nbsp;",
  573.             "id" => $prefix . "key_o",
  574.             "type" => "checkbox"
  575.         ),
  576.         array(
  577.             "name" => "&nbsp;P&nbsp;",
  578.             "id" => $prefix . "key_p",
  579.             "type" => "checkbox"
  580.         ),
  581.         array(
  582.             "name" => "&nbsp;Q&nbsp;",
  583.             "id" => $prefix . "key_q",
  584.             "type" => "checkbox"
  585.         ),
  586.         array(
  587.             "name" => "&nbsp;R&nbsp;",
  588.             "id" => $prefix . "key_r",
  589.             "type" => "checkbox"
  590.         ),
  591.         array(
  592.             "name" => "&nbsp;S&nbsp;",
  593.             "id" => $prefix . "key_s",
  594.             "type" => "checkbox"
  595.         ),
  596.         array(
  597.             "name" => "&nbsp;T&nbsp;",
  598.             "id" => $prefix . "key_t",
  599.             "type" => "checkbox"
  600.         ),
  601.         array(
  602.             "name" => "&nbsp;U&nbsp;",
  603.             "id" => $prefix . "key_u",
  604.             "type" => "checkbox"
  605.         ),
  606.         array(
  607.             "name" => "&nbsp;V&nbsp;",
  608.             "id" => $prefix . "key_v",
  609.             "type" => "checkbox"
  610.         ),
  611.         array(
  612.             "name" => "&nbsp;W&nbsp;",
  613.             "id" => $prefix . "key_w",
  614.             "type" => "checkbox"
  615.         ),
  616.         array(
  617.             "name" => "&nbsp;X&nbsp;",
  618.             "id" => $prefix . "key_x",
  619.             "type" => "checkbox"
  620.         ),
  621.         array(
  622.             "name" => "&nbsp;Y&nbsp;",
  623.             "id" => $prefix . "key_y",
  624.             "type" => "checkbox"
  625.         ),
  626.         array(
  627.             "name" => "&nbsp;Z&nbsp;",
  628.             "id" => $prefix . "key_z",
  629.             "type" => "checkbox"
  630.         )
  631.     )
  632. );
  633. add_action("admin_menu", "mytheme_add_box");
  634. add_action("save_post", "mytheme_save_data");
  635. add_action("admin_menu", "ii_create_meta_box");
  636. add_action("save_post", "ii_save_meta_data");
  637. yakutlisans();
  638. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement