سلام دوستان میخام این کد را که برای
ps add to social bookmarking
هست را جاش را تغییر بدم در پست چجوری این کار را کنم با کدوم کد؟
<?php
function ps_add_to_social($content) {global $post;
$ps_width = '100%'; // (100px) or (100%)
$ps_align = 'justify'; // ("left, "center", "right", justify")
$ps_image_dir = get_settings('home') . '/wp-content/plugins/ps-add-to-social-bookmarking/images/'; // Images URL
$ps_link = get_permalink($post->ID); // Post URL
$ps_title = str_replace(' ','+',get_the_title( $post->ID )); // Post title
$content .= "";//if (is_page() && is_feed()) {
if (is_single()) {
$content .= "\n"
. '
<div style="padding:16px 0 16px 0; text-align:' . $ps_align . '; width:' . $ps_width . ';"><b>ط§غŒظ† ظ…ط·ظ„ط¨ ط±ط§ ط¨ظ‡ ط§ط´طھط±ط§ع© ط¨ع¯ط°ط§ط±غŒط¯:</b>
' . "\n"// Balatarin
. '
<img src="' . $ps_image_dir . 'balatarin.png" border="0" alt="balatarin" />
' . "\n"//Cloob
. '
<img src="' . $ps_image_dir . 'cloob.gif" border="0" alt="cloob" />
' . "\n"// viwio
. '
<img src="' . $ps_image_dir . 'viwio.png" border="0" alt="viwio" />
' . "\n"// Donbaleh
. '
<img src="' . $ps_image_dir . 'donbaleh.gif" border="0" alt="Donbaleh" />
'."\n"
. '
<img src="' . $ps_image_dir . 'twitter.png" border="0" alt="Twitter" />
' . "\n"
. '
<img src="' . $ps_image_dir . 'facebook.png" border="0" alt="Facebook" />
'."\n"// Google Buzz
. '
<img src="' . $ps_image_dir . 'google-buzz.png" border="0" alt="Google Buzz" />
'."\n"// Google Bookmarks
. '
<img src="' . $ps_image_dir . 'google.png" border="0" alt="Google Bookmarks" onmouseover="this.style.opacity=1;this.filters.alpha.opacity=100" onmouseout="this.style.opacity=0.4;this.filters.alpha.opacity=40" />
'."\n"// Digg
. '
<img src="' . $ps_image_dir . 'digg.png" border="0" alt="Digg" />
'."\n"// Yahoo mass
. '
<img src="' . $ps_image_dir . 'yahoo.gif" border="0" alt="yahoo" />
'."\n"// Technorati
. '
<img src="' . $ps_image_dir . 'Technorati.png" border="0" alt="Technorati" />
'."\n"// delicious
. '
<img src="' . $ps_image_dir . 'delicious.png" border="0" alt="delicious" />
'."\n". '</div>' . "\n";
}return $content;
}add_filter('the_content', 'ps_add_to_social');
?>