// Some default filters add_filter('bloginfo','wp_specialchars'); add_filter('category_description', 'wptexturize'); add_filter('list_cats', 'wptexturize'); add_filter('comment_author', 'wptexturize'); add_filter('comment_text', 'wptexturize'); add_filter('single_post_title', 'wptexturize'); add_filter('the_title', 'wptexturize'); add_filter('the_content', 'wptexturize'); add_filter('the_excerpt', 'wptexturize'); add_filter('bloginfo', 'wptexturize'); // Comments, trackbacks, pingbacks add_filter('pre_comment_author_name', 'strip_tags'); add_filter('pre_comment_author_name', 'trim'); add_filter('pre_comment_author_name', 'wp_specialchars', 30); add_filter('pre_comment_author_email', 'trim'); add_filter('pre_comment_author_email', 'sanitize_email'); add_filter('pre_comment_author_url', 'strip_tags'); add_filter('pre_comment_author_url', 'trim'); add_filter('pre_comment_author_url', 'clean_url'); add_filter('pre_comment_content', 'stripslashes', 1); add_filter('pre_comment_content', 'wp_rel_nofollow', 15); add_filter('pre_comment_content', 'balanceTags', 30); add_filter('pre_comment_content', 'addslashes', 50); add_filter('pre_comment_author_name', 'wp_filter_kses'); add_filter('pre_comment_author_email', 'wp_filter_kses'); add_filter('pre_comment_author_url', 'wp_filter_kses'); // Default filters for these functions add_filter('comment_author', 'wptexturize'); add_filter('comment_author', 'convert_chars'); add_filter('comment_author', 'wp_specialchars'); add_filter('comment_email', 'antispambot'); add_filter('comment_url', 'clean_url'); add_filter('comment_text', 'convert_chars'); add_filter('comment_text', 'make_clickable'); add_filter('comment_text', 'force_balance_tags', 25); add_filter('comment_text', 'wpautop', 30); add_filter('comment_text', 'convert_smilies', 20); add_filter('comment_excerpt', 'convert_chars'); // Categories add_filter('pre_category_name', 'strip_tags'); add_filter('pre_category_name', 'trim'); add_filter('pre_category_name', 'wp_filter_kses'); add_filter('pre_category_name', 'wp_specialchars', 30); add_filter('pre_category_description', 'wp_filter_kses'); //Links add_filter('pre_link_name', 'strip_tags'); add_filter('pre_link_name', 'trim'); add_filter('pre_link_name', 'wp_filter_kses'); add_filter('pre_link_name', 'wp_specialchars', 30); add_filter('pre_link_description', 'wp_filter_kses'); add_filter('pre_link_notes', 'wp_filter_kses'); add_filter('pre_link_url', 'strip_tags'); add_filter('pre_link_url', 'trim'); add_filter('pre_link_url', 'clean_url'); add_filter('pre_link_image', 'strip_tags'); add_filter('pre_link_image', 'trim'); add_filter('pre_link_image', 'clean_url'); add_filter('pre_link_rss', 'strip_tags'); add_filter('pre_link_rss', 'trim'); add_filter('pre_link_rss', 'clean_url'); add_filter('pre_link_target', 'strip_tags'); add_filter('pre_link_target', 'trim'); add_filter('pre_link_target', 'wp_filter_kses'); add_filter('pre_link_target', 'wp_specialchars', 30); add_filter('pre_link_rel', 'strip_tags'); add_filter('pre_link_rel', 'trim'); add_filter('pre_link_rel', 'wp_filter_kses'); add_filter('pre_link_rel', 'wp_specialchars', 30); // Users add_filter('pre_user_display_name', 'strip_tags'); add_filter('pre_user_display_name', 'trim'); add_filter('pre_user_display_name', 'wp_filter_kses'); add_filter('pre_user_display_name', 'wp_specialchars', 30); add_filter('pre_user_first_name', 'strip_tags'); add_filter('pre_user_first_name', 'trim'); add_filter('pre_user_first_name', 'wp_filter_kses'); add_filter('pre_user_first_name', 'wp_specialchars', 30); add_filter('pre_user_last_name', 'strip_tags'); add_filter('pre_user_last_name', 'trim'); add_filter('pre_user_last_name', 'wp_filter_kses'); add_filter('pre_user_last_name', 'wp_specialchars', 30); add_filter('pre_user_nickname', 'strip_tags'); add_filter('pre_user_nickname', 'trim'); add_filter('pre_user_nickname', 'wp_filter_kses'); add_filter('pre_user_nickname', 'wp_specialchars', 30); add_filter('pre_user_description', 'trim'); add_filter('pre_user_description', 'wp_filter_kses'); add_filter('pre_user_url', 'strip_tags'); add_filter('pre_user_url', 'trim'); add_filter('pre_user_url', 'clean_url'); add_filter('pre_user_email', 'trim'); add_filter('pre_user_email', 'sanitize_email'); // Places to balance tags on input add_filter('content_save_pre', 'balanceTags', 50); add_filter('excerpt_save_pre', 'balanceTags', 50); add_filter('comment_save_pre', 'balanceTags', 50); // Misc. title, content, and excerpt filters add_filter('the_title', 'convert_chars'); add_filter('the_title', 'trim'); add_filter('the_content', 'convert_smilies'); add_filter('the_content', 'convert_chars'); add_filter('the_content', 'wpautop'); add_filter('the_excerpt', 'convert_smilies'); add_filter('the_excerpt', 'convert_chars'); add_filter('the_excerpt', 'wpautop'); add_filter('get_the_excerpt', 'wp_trim_excerpt'); add_filter('sanitize_title', 'sanitize_title_with_dashes'); // RSS filters add_filter('the_title_rss', 'strip_tags'); add_filter('the_title_rss', 'ent2ncr', 8); add_filter('the_title_rss', 'wp_specialchars'); add_filter('the_content_rss', 'ent2ncr', 8); add_filter('the_excerpt_rss', 'convert_chars'); add_filter('the_excerpt_rss', 'ent2ncr', 8); add_filter('comment_author_rss', 'ent2ncr', 8); add_filter('comment_text_rss', 'wp_specialchars'); add_filter('comment_text_rss', 'ent2ncr', 8); add_filter('bloginfo_rss', 'ent2ncr', 8); add_filter('the_author', 'ent2ncr', 8); // Misc filters add_filter('option_blog_charset', 'wp_specialchars'); // Actions add_action('publish_post', 'generic_ping'); add_action('wp_head', 'rsd_link'); add_action('sanitize_comment_cookies', 'sanitize_comment_cookies'); ?> David Peretz Live http://hissrecords.com/david/live הבלוג שלי Sun, 27 May 2007 11:14:02 +0000 http://wordpress.org/?v=2.0.7h he 18.07.07 - ירושלים - ארוח בלהקת "המשפחה" http://hissrecords.com/david/live/?p=16 http://hissrecords.com/david/live/?p=16#comments Sun, 27 May 2007 11:03:03 +0000 david כללי http://hissrecords.com/david/live/?p=16 ]]> הופעת השקה חגיגית לרגל הוצאת האלבום השני של להקת המשפחה - "לא בכוח" פרטים יבואו בהמשך.  ]]> http://hissrecords.com/david/live/?feed=rss2&p=16 07.07.07 - באר שבע - הופעת השקה חגיגית http://hissrecords.com/david/live/?p=11 http://hissrecords.com/david/live/?p=11#comments Sun, 27 May 2007 10:59:42 +0000 david כללי http://hissrecords.com/david/live/?p=11 ]]>  21:00 עשן הזמן  - מרפסת הקיץ. מחיר כניסה:20  ש"ח  ]]> http://hissrecords.com/david/live/?feed=rss2&p=11 27.06.07 - הופעת השקה חגיגית תאטרון תמונע http://hissrecords.com/david/live/?p=9 http://hissrecords.com/david/live/?p=9#comments Sun, 27 May 2007 10:43:08 +0000 david כללי http://hissrecords.com/david/live/?p=9 ]]> סוף סוף - הייקו בלוז בתל אביב,  בהופעה  נורמלית. אורחים: יוסי בבליקי, איתי בלטר, שרון מולדאבי. מחיר כרטיסים - 50 ש"ח]]> http://hissrecords.com/david/live/?feed=rss2&p=9 26.06.07 - באר שבע , אוניברסיטת ב"ג http://hissrecords.com/david/live/?p=8 http://hissrecords.com/david/live/?p=8#comments Sun, 27 May 2007 10:41:49 +0000 david כללי http://hissrecords.com/david/live/?p=8 ]]> הופעה באוניברסיטת בן גוריון, אולם זוננפלד, בשעה 21:00, הכניסה חינם! יחד איתי יהיו גם לנסז, נדב אזולאי הגברי, יוחנן קרסל האגדי, וטל אורן המקסימה]]> http://hissrecords.com/david/live/?feed=rss2&p=8 21.06.07 - ירושלים - ארוח בהופעה של פונץ'. http://hissrecords.com/david/live/?p=5 http://hissrecords.com/david/live/?p=5#comments Sun, 27 May 2007 10:41:03 +0000 david כללי http://hissrecords.com/david/live/?p=5 ]]> שעה 21:00 - במסגרת פסטיבל "פינוקיו בירושלים", אני מתארח בהופעה של להקת פונץ' בסינדרום ירושלים.    ]]> http://hissrecords.com/david/live/?feed=rss2&p=5 20.06.07 הופעה בקרית גת http://hissrecords.com/david/live/?p=3 http://hissrecords.com/david/live/?p=3#comments Sun, 27 May 2007 10:20:04 +0000 david כללי http://hissrecords.com/david/live/?p=3 ]]> במסגרת הרצאות אופ”ק (אוניברסיטה בקהילה ). הופעה של יוחנן קרסל נדב אזולאי ודויד פרץ בשעה 19:00 במתנ”ס העירוני. כניסה חינם .  ]]> http://hissrecords.com/david/live/?feed=rss2&p=3 05.06.07 - באר שבע, פסטיבל סמילנסקי http://hissrecords.com/david/live/?p=1 http://hissrecords.com/david/live/?p=1#comments Tue, 17 Apr 2007 16:10:16 +0000 david כללי ]]> הופעה עם הייקו בלוז בהרכב מלא ( אלעד שופן, יוחנן קרסל, נדב אזולאי, ניסים "מונו" מסס ) במסגרת ערב "עשן הזמן מתארח" בפסטיבל סמילנסקי באר שבע. הכניסה חינם (טוב נו, זה פסטיבל רחוב) ויחד איתי יופיעו באותו ערב - טל אורן, יוחנן קרסל, איתי בלטר ולנסס.  ההופעות יתחילו בשעה - 19:00,  ויגמרו ב- 23:00. תבואו יהיה כיף באר שבעי.      ]]> http://hissrecords.com/david/live/?feed=rss2&p=1