ID); } else { $url = bitly(get_permalink($post->ID)); } $title = str_replace(' ','+',get_the_title( $post->ID )); // Заменяне на празните места в заглавието с + $txt .= ""; $txt .= "\n" . '
Сподели:
' . "\n" // Edno23 . ' Edno23 ' . "\n" //Favit . ' Favit ' . "\n" // Svejo . ' Svejo ' . "\n" // Twitter . ' Twitter ' . "\n" // Facebook . ' Facebook '."\n" // Google Buzz . ' Google Buzz '."\n" // Delicious . ' Delicious '."\n" // Google Bookmarks . ' Google Bookmarks '."\n" // Digg . ' Digg '."\n" . '
' . "\n"; return $txt; } function add_to_social($content) { $buttons = ats_buttons(); if (get_option('ats-rejim') == "shortcode") { // добавяне чрез shortcode return str_replace(ADD_TO_SOCIAL_TAG, $buttons, $content); } else if (get_option('ats-rejim') == "manual") { // добавяне чрез PHP код return $content; } else { // автоматично добавяне if (is_single()) { $content .= $buttons; return $content; } } return $content; } add_filter('the_content', 'add_to_social'); function ats_include_admin() { include('add-to-social-admin.php'); } function ats_admin() { add_options_page("Add To Social", "Add To Social", 1, "add-to-social", "ats_include_admin"); } add_action('admin_menu', 'ats_admin'); ?>