1 | <?php
|
---|
2 | function xpress_the_title($show = false)
|
---|
3 | {
|
---|
4 | $output = '<div class ="xpress-post-header">' . "\n";
|
---|
5 |
|
---|
6 | if (function_exists('hotDates')) {
|
---|
7 | ob_start();
|
---|
8 | hotDates();
|
---|
9 | $output .= ob_get_contents();
|
---|
10 | ob_end_clean();
|
---|
11 | }
|
---|
12 | $output .= '<div class ="xpress-post-title">' . "\n";
|
---|
13 | $output .= '<h2><a href="';
|
---|
14 | ob_start();
|
---|
15 | the_permalink();
|
---|
16 | $output .= ob_get_contents();
|
---|
17 | ob_end_clean();
|
---|
18 |
|
---|
19 | $output .= '" rel="bookmark" title="';
|
---|
20 | $output .= sprintf(__('Permanent Link to %s', 'xpress'), the_title_attribute('echo=0'));
|
---|
21 | $output .= '">';
|
---|
22 | ob_start();
|
---|
23 | the_title();
|
---|
24 | $output .= ob_get_contents();
|
---|
25 | ob_end_clean();
|
---|
26 | $output .= '</a></h2>' . "\n";
|
---|
27 | $output .= '</div>' . "\n";
|
---|
28 | $output .= '</div>' . "\n";
|
---|
29 |
|
---|
30 | if (empty($show))
|
---|
31 | return $output;
|
---|
32 | else
|
---|
33 | echo $output;
|
---|
34 |
|
---|
35 | }
|
---|
36 |
|
---|
37 | function xpress_selected_author($show=true ) {
|
---|
38 | $output = '';
|
---|
39 | $author_cookie = get_xpress_dir_name() . "_select_author" ;
|
---|
40 | if (!empty($_COOKIE[$author_cookie])){
|
---|
41 | $uid = intval($_COOKIE[$author_cookie]);
|
---|
42 | $user_info = get_userdata($uid);
|
---|
43 | $output = $user_info->display_name;
|
---|
44 | }
|
---|
45 | if (empty($show))
|
---|
46 | return $output;
|
---|
47 | else
|
---|
48 | echo $output;
|
---|
49 |
|
---|
50 | }
|
---|
51 | function xpress_selected_author_id($show=true ) {
|
---|
52 | $output = '';
|
---|
53 | $author_cookie = get_xpress_dir_name() . "_select_author" ;
|
---|
54 | if (!empty($_COOKIE[$author_cookie])){
|
---|
55 | $output = intval($_COOKIE[$author_cookie]);
|
---|
56 | } else {
|
---|
57 | $output = '';
|
---|
58 | }
|
---|
59 | if (empty($show))
|
---|
60 | return $output;
|
---|
61 | else
|
---|
62 | echo $output;
|
---|
63 |
|
---|
64 | }
|
---|
65 |
|
---|
66 | function xpress_now_user_level($show=true ) {
|
---|
67 | global $current_user;
|
---|
68 | $output = @$current_user->user_level;
|
---|
69 | if (empty($show))
|
---|
70 | return $output;
|
---|
71 | else
|
---|
72 | echo $output;
|
---|
73 | }
|
---|
74 |
|
---|
75 |
|
---|
76 | function xpress_list_pings($trackback, $args, $depth) {
|
---|
77 | $GLOBALS['comment'] = $trackback;
|
---|
78 | echo '<li id="comment-<?php comment_ID(); ?>">';
|
---|
79 | comment_author_link();
|
---|
80 | }
|
---|
81 |
|
---|
82 | function xpress_credit($show = false)
|
---|
83 | {
|
---|
84 | global $wp_version , $xoops_config;
|
---|
85 |
|
---|
86 | $xpress_version = $xoops_config->module_version;
|
---|
87 | $xpress_codename = $xoops_config->module_codename;
|
---|
88 | $ret = '<a href="http://www.toemon.com"'. " target='_blank'" . '>XPressME Ver.' . sprintf('%.2f %s',$xpress_version,$xpress_codename) .'</a>';
|
---|
89 | if (strstr($wp_version,'ME')){
|
---|
90 | $ret .= '(included <a href="http://wpme.sourceforge.jp/" title="Powered by WordPress"'." target='_blank'". '>WordPress ' . $wp_version . '</a>)';
|
---|
91 | } else {
|
---|
92 | $ret .= '(included <a href="http://ja.wordpress.org/" title="Powered by WordPress"'." target='_blank'". '>WordPress ' . $wp_version . '</a>)';
|
---|
93 | }
|
---|
94 |
|
---|
95 | if (empty($show))
|
---|
96 | return $ret;
|
---|
97 | else
|
---|
98 | echo $ret;
|
---|
99 | }
|
---|
100 |
|
---|
101 | function xpress_convert_time($show = false)
|
---|
102 | {
|
---|
103 | $ret = timer_stop(0) .'sec. ';
|
---|
104 | if (empty($show))
|
---|
105 | return $ret;
|
---|
106 | else
|
---|
107 | echo $ret;
|
---|
108 | }
|
---|
109 |
|
---|
110 | function xpress_is_theme_sidebar_disp(){
|
---|
111 | global $xpress_config;
|
---|
112 | if (is_wordpress_style()) return true;
|
---|
113 | return $xpress_config->is_theme_sidebar_disp;
|
---|
114 | }
|
---|
115 |
|
---|
116 | function xpress_left_arrow_post_link($show = false)
|
---|
117 | {
|
---|
118 | global $xpress_config;
|
---|
119 | $ret = '';
|
---|
120 |
|
---|
121 | if($xpress_config->is_left_postnavi_old){
|
---|
122 | $link_title = $xpress_config->old_post_link_text;
|
---|
123 | ob_start();
|
---|
124 | if ($xpress_config->is_postnavi_title_disp)
|
---|
125 | previous_post_link('« %link');
|
---|
126 | else
|
---|
127 | previous_post_link('« %link',$link_title);
|
---|
128 | $ret = ob_get_contents();
|
---|
129 | ob_end_clean();
|
---|
130 | ob_start();
|
---|
131 | previous_post_link('%link',$link_title);
|
---|
132 | $GLOBALS['left_arrow_post_link'] = ob_get_contents();
|
---|
133 | ob_end_clean();
|
---|
134 |
|
---|
135 | } else {
|
---|
136 | $link_title = $xpress_config->newer_post_link_text;
|
---|
137 | ob_start();
|
---|
138 | if ($xpress_config->is_postnavi_title_disp)
|
---|
139 | next_post_link('« %link');
|
---|
140 | else
|
---|
141 | $GLOBALS['left_arrow_post_link'] =
|
---|
142 | $ret = ob_get_contents();
|
---|
143 | ob_end_clean();
|
---|
144 | ob_start();
|
---|
145 | next_post_link('%link',$link_title);
|
---|
146 | $GLOBALS['left_arrow_post_link'] = ob_get_contents();
|
---|
147 | ob_end_clean();
|
---|
148 |
|
---|
149 | }
|
---|
150 |
|
---|
151 | if ($xpress_config->is_postnavi_title_disp){
|
---|
152 | $on_mouse_show = $link_title;
|
---|
153 | } else {
|
---|
154 | if($xpress_config->is_left_postnavi_old){
|
---|
155 | ob_start();
|
---|
156 | previous_post_link('%link');
|
---|
157 | $on_mouse_show = ob_get_contents();
|
---|
158 | ob_end_clean();
|
---|
159 | } else {
|
---|
160 | ob_start();
|
---|
161 | next_post_link('%link');
|
---|
162 | $on_mouse_show = ob_get_contents();
|
---|
163 | ob_end_clean();
|
---|
164 | }
|
---|
165 | $pattern = "<a[^>]*?>(.*)<\/a>";
|
---|
166 | preg_match("/".$pattern."/s", $on_mouse_show, $body_matches);
|
---|
167 | $on_mouse_show = $body_matches[1];
|
---|
168 | }
|
---|
169 | $ret = str_replace('">','" title="'.$on_mouse_show . '">' , $ret);
|
---|
170 |
|
---|
171 | if (empty($show))
|
---|
172 | return $ret;
|
---|
173 | else
|
---|
174 | echo $ret;
|
---|
175 | }
|
---|
176 |
|
---|
177 | function xpress_right_arrow_post_link($show = false)
|
---|
178 | {
|
---|
179 | global $xpress_config;
|
---|
180 | $ret = '';
|
---|
181 |
|
---|
182 | if($xpress_config->is_left_postnavi_old){
|
---|
183 | $link_title = $xpress_config->newer_post_link_text;
|
---|
184 | ob_start();
|
---|
185 | if ($xpress_config->is_postnavi_title_disp)
|
---|
186 | next_post_link('%link »');
|
---|
187 | else
|
---|
188 | next_post_link('%link »',$link_title);
|
---|
189 | $ret = ob_get_contents();
|
---|
190 | ob_end_clean();
|
---|
191 | ob_start();
|
---|
192 | next_post_link('%link',$link_title);
|
---|
193 | $GLOBALS['right_arrow_post_link'] = ob_get_contents();
|
---|
194 | ob_end_clean();
|
---|
195 |
|
---|
196 | } else {
|
---|
197 | $link_title = $xpress_config->old_post_link_text;
|
---|
198 | ob_start();
|
---|
199 | if ($xpress_config->is_postnavi_title_disp)
|
---|
200 | previous_post_link('%link »');
|
---|
201 | else
|
---|
202 | previous_post_link('%link »',$link_title);
|
---|
203 | $ret = ob_get_contents();
|
---|
204 | ob_end_clean();
|
---|
205 | ob_start();
|
---|
206 | previous_post_link('%link',$link_title);
|
---|
207 | $GLOBALS['right_arrow_post_link'] = ob_get_contents();
|
---|
208 | ob_end_clean();
|
---|
209 |
|
---|
210 | }
|
---|
211 |
|
---|
212 | if ($xpress_config->is_postnavi_title_disp){
|
---|
213 | $on_mouse_show = $link_title;
|
---|
214 | } else {
|
---|
215 | if($xpress_config->is_left_postnavi_old){
|
---|
216 | ob_start();
|
---|
217 | next_post_link('%link');
|
---|
218 | $on_mouse_show = ob_get_contents();
|
---|
219 | ob_end_clean();
|
---|
220 | } else {
|
---|
221 | ob_start();
|
---|
222 | previous_post_link('%link');
|
---|
223 | $on_mouse_show = ob_get_contents();
|
---|
224 | ob_end_clean();
|
---|
225 | }
|
---|
226 | $pattern = "<a[^>]*?>(.*)<\/a>";
|
---|
227 | preg_match("/".$pattern."/s", $on_mouse_show, $body_matches);
|
---|
228 | $on_mouse_show = $body_matches[1];
|
---|
229 | }
|
---|
230 | $ret = str_replace('">','" title="'.$on_mouse_show . '">' , $ret);
|
---|
231 |
|
---|
232 | if (empty($show))
|
---|
233 | return $ret;
|
---|
234 | else
|
---|
235 | echo $ret;
|
---|
236 | }
|
---|
237 | // page link
|
---|
238 | function xpress_left_arrow_posts_link($show = false)
|
---|
239 | {
|
---|
240 | global $xpress_config;
|
---|
241 | $ret = '';
|
---|
242 |
|
---|
243 | if($xpress_config->is_left_page_navi_old){
|
---|
244 | $link_title = $xpress_config->old_page_link_text;
|
---|
245 | ob_start();
|
---|
246 | next_posts_link("« $link_title");
|
---|
247 | $ret = ob_get_contents();
|
---|
248 | ob_end_clean();
|
---|
249 | } else {
|
---|
250 | $link_title = $xpress_config->newer_page_link_text;
|
---|
251 | ob_start();
|
---|
252 | previous_posts_link("« $link_title");
|
---|
253 | $ret = ob_get_contents();
|
---|
254 | ob_end_clean();
|
---|
255 | }
|
---|
256 |
|
---|
257 | if (empty($show))
|
---|
258 | return $ret;
|
---|
259 | else
|
---|
260 | echo $ret;
|
---|
261 | }
|
---|
262 |
|
---|
263 | function xpress_right_arrow_posts_link($show = false)
|
---|
264 | {
|
---|
265 | global $xpress_config;
|
---|
266 | $ret = '';
|
---|
267 |
|
---|
268 | if($xpress_config->is_left_page_navi_old){
|
---|
269 | $link_title = $xpress_config->newer_page_link_text;
|
---|
270 | ob_start();
|
---|
271 | previous_posts_link("$link_title »");
|
---|
272 | $ret = ob_get_contents();
|
---|
273 | ob_end_clean();
|
---|
274 | } else {
|
---|
275 | $link_title = $xpress_config->old_page_link_text;
|
---|
276 | ob_start();
|
---|
277 | next_posts_link("$link_title »");
|
---|
278 | $ret = ob_get_contents();
|
---|
279 | ob_end_clean();
|
---|
280 | }
|
---|
281 |
|
---|
282 | if (empty($show))
|
---|
283 | return $ret;
|
---|
284 | else
|
---|
285 | echo $ret;
|
---|
286 | }
|
---|
287 |
|
---|
288 |
|
---|
289 | function xpress_is_author_view_count(){
|
---|
290 | global $xpress_config;
|
---|
291 | return $xpress_config->is_author_view_count;
|
---|
292 | }
|
---|
293 |
|
---|
294 | function xpress_is_multi_user(){
|
---|
295 | global $xpress_config;
|
---|
296 | return $xpress_config->is_multi_user;
|
---|
297 | }
|
---|
298 |
|
---|
299 |
|
---|
300 | function xpress_substr($str, $start, $length, $trimmarker = '...')
|
---|
301 | {
|
---|
302 | if (function_exists('mb_substr')){
|
---|
303 | $str2 = mb_substr( $str , $start , $length);
|
---|
304 | return $str2 . ( mb_strlen($str)!=mb_strlen($str2) ? $trimmarker : '' );
|
---|
305 | } else {
|
---|
306 | return ( strlen($str) - $start <= $length ) ? substr( $str, $start, $length ) : substr( $str, $start, $length - strlen($trimmarker) ) . $trimmarker;
|
---|
307 | }
|
---|
308 | }
|
---|
309 |
|
---|
310 |
|
---|
311 | // views count
|
---|
312 | // Set and retrieves post views given a post ID or post object.
|
---|
313 | // Retrieves post views given a post ID or post object.
|
---|
314 | function xpress_post_views_count($post_id=0,$format= '',$show = true) {
|
---|
315 | global $xoops_db,$wpdb;
|
---|
316 |
|
---|
317 | static $post_cache_views;
|
---|
318 |
|
---|
319 | if ( empty($post_id) ) {
|
---|
320 | if ( isset($GLOBALS['post']) )
|
---|
321 | $post_id = $GLOBALS['post']->ID;
|
---|
322 | }
|
---|
323 |
|
---|
324 | $post_id = intval($post_id);
|
---|
325 | if($post_id==0) return null;
|
---|
326 | if(!isset($post_cache_views[$post_id])){
|
---|
327 | $sql = "SELECT post_views FROM " . get_wp_prefix() . "views" . " WHERE post_id=$post_id";
|
---|
328 | $post_views = $xoops_db->get_var($sql);
|
---|
329 | if (!$post_views) {
|
---|
330 | $post_cache_views[$post_id] = 0;
|
---|
331 | }else{
|
---|
332 | $post_cache_views[$post_id] = $post_views;
|
---|
333 | }
|
---|
334 | }
|
---|
335 | $v_count = intval($post_cache_views[$post_id]);
|
---|
336 |
|
---|
337 | if (empty($format)) $format = __('views :%d','xpressme');
|
---|
338 |
|
---|
339 | $ret = sprintf($format,$v_count);
|
---|
340 |
|
---|
341 | if ($show) echo $ret; else return $ret;
|
---|
342 | }
|
---|
343 |
|
---|
344 | function set_post_views_count(&$content) {
|
---|
345 | if ( empty($_GET["feed"]) && empty($GLOBALS["feed"]) && empty($GLOBALS["doing_trackback"]) && empty($GLOBALS["doing_rss"]) && empty($_POST) && is_single() ){
|
---|
346 | post_views_counting();
|
---|
347 | }
|
---|
348 | return $content;
|
---|
349 | }
|
---|
350 |
|
---|
351 | // Set post views given a post ID or post object.
|
---|
352 | function post_views_counting($post_id = 0) {
|
---|
353 | global $xoops_db,$wpdb;
|
---|
354 | global $table_prefix;
|
---|
355 | static $views;
|
---|
356 |
|
---|
357 | $post_id = intval($post_id);
|
---|
358 | if ( empty($post_id) && isset($GLOBALS['post']) ){
|
---|
359 | $post_id = $GLOBALS['post']->ID;
|
---|
360 | }
|
---|
361 |
|
---|
362 |
|
---|
363 | $views_db = get_wp_prefix() . 'views';
|
---|
364 |
|
---|
365 | if($post_id==0 || !empty($views[$post_id])) return null;
|
---|
366 |
|
---|
367 | if(!xpress_is_author_view_count()){
|
---|
368 | $current_user_id = $GLOBALS['current_user']->ID;
|
---|
369 | $post_author_id = $GLOBALS['post']->post_author;
|
---|
370 | if ($current_user_id ==$post_author_id) return null;
|
---|
371 | }
|
---|
372 |
|
---|
373 | $sql = "SELECT post_views FROM " . $views_db . " WHERE post_id=$post_id";
|
---|
374 | $post_views_found = $xoops_db->get_var($sql);
|
---|
375 | if($post_views_found){
|
---|
376 | $sql = "UPDATE " . $views_db . " SET post_views=post_views+1 WHERE post_id=$post_id";
|
---|
377 | }else{
|
---|
378 | $sql = "INSERT INTO " . $views_db . " (post_id, post_views) VALUES ($post_id, 1)";
|
---|
379 | }
|
---|
380 | $xoops_db->query($sql);
|
---|
381 | return true;
|
---|
382 | }
|
---|
383 |
|
---|
384 | function get_xpress_excerpt_contents($excerpt_length_word,$excerpt_length_character,$more_link_text = '') {
|
---|
385 | global $post,$xpress_config;
|
---|
386 |
|
---|
387 | $blog_encoding = get_option('blog_charset');
|
---|
388 | $text = get_the_content('');
|
---|
389 | $text = strip_shortcodes( $text );
|
---|
390 | $text = apply_filters('the_content', $text);
|
---|
391 | $text = str_replace(']]>', ']]>', $text);
|
---|
392 | $text = strip_tags($text);
|
---|
393 | $is_almost_ascii = ($xpress_config->ascii_judged_rate < round(@(mb_strlen($text, $blog_encoding) / strlen($text)) * 100)) ? true : false;
|
---|
394 | if($is_almost_ascii) {
|
---|
395 | $words = explode(' ', $text, $excerpt_length_word + 1);
|
---|
396 |
|
---|
397 | if(count($words) > $excerpt_length_word) {
|
---|
398 | array_pop($words);
|
---|
399 | array_push($words, ' ... ');
|
---|
400 | $text = implode(' ', $words);
|
---|
401 | if (!empty($more_link_text)) $text .= '<p align="center"><a href="'. get_permalink() . "\">".$more_link_text .'</a></p>';
|
---|
402 |
|
---|
403 | }
|
---|
404 | }
|
---|
405 | elseif(mb_strlen($text, $blog_encoding) > $excerpt_length_character) {
|
---|
406 | $text = mb_substr($text, 0, $xpress_config->excerpt_length_character, $blog_encoding) . ' ... ';
|
---|
407 | if (!empty($more_link_text)) $text .= '<p align="center"><a href="'. get_permalink() . "\">".$more_link_text .'</a></p>';
|
---|
408 | }
|
---|
409 |
|
---|
410 | return $text;
|
---|
411 | }
|
---|
412 |
|
---|
413 | function xpress_the_content($more_link_text = null, $stripteaser = 0, $more_file = '',$show = true)
|
---|
414 | {
|
---|
415 | global $post,$xpress_config;
|
---|
416 |
|
---|
417 |
|
---|
418 | if ($xpress_config->is_content_excerpt){
|
---|
419 | $excerpt_length_word = $xpress_config->excerpt_length_word;
|
---|
420 | $excerpt_length_character = $xpress_config->excerpt_length_character;
|
---|
421 | $more_link_text = $xpress_config->more_link_text;
|
---|
422 | $content = get_xpress_excerpt_contents($excerpt_length_word,$excerpt_length_character,$more_link_text);
|
---|
423 | } else {
|
---|
424 | $content = get_the_content($more_link_text,$stripteaser,$more_file);
|
---|
425 | $content = apply_filters('the_content', $content);
|
---|
426 | $content = str_replace(']]>', ']]>', $content);
|
---|
427 | }
|
---|
428 | if(empty($show)) return $content;
|
---|
429 | echo $content;
|
---|
430 | }
|
---|
431 |
|
---|
432 | function is_xpress_contributor()
|
---|
433 | {
|
---|
434 | global $current_user;
|
---|
435 | get_currentuserinfo();
|
---|
436 | if ($current_user->user_level > 3)
|
---|
437 | return true;
|
---|
438 | else
|
---|
439 | return false;
|
---|
440 | }
|
---|
441 |
|
---|
442 | function xpress_post_new_link($link_title,$display = true)
|
---|
443 | {
|
---|
444 | $output = '<a href="'. get_xpress_url() . '/wp-admin/post-new.php' . '">' . $link_title . '</a>';
|
---|
445 | if ($display)
|
---|
446 | echo $output;
|
---|
447 | else
|
---|
448 | return $output;
|
---|
449 | }
|
---|
450 |
|
---|
451 | function xpress_conditional_title($display = true)
|
---|
452 | {
|
---|
453 | $selected_author = xpress_selected_author(false);
|
---|
454 |
|
---|
455 | $output = __('Main', 'xpressme');
|
---|
456 | $output = '';
|
---|
457 | if (is_category())
|
---|
458 | $output = sprintf(__('Archive for the ‘%s’ Category', 'xpressme'), single_cat_title('', false));
|
---|
459 | if (is_tag())
|
---|
460 | $output = sprintf(__('Posts Tagged ‘%s’', 'xpressme'), single_tag_title('', false) );
|
---|
461 | if (is_day())
|
---|
462 | $output = sprintf(__('Archive for %s|Daily archive page', 'xpressme'), get_the_time(__('F jS, Y', 'xpressme')));
|
---|
463 | if (is_month())
|
---|
464 | $output = sprintf(__('Archive for %s|Monthly archive page', 'xpressme'), get_the_time(__('F, Y', 'xpressme')));
|
---|
465 | if (is_year())
|
---|
466 | $output = sprintf(__('Archive for %s|Yearly archive page', 'xpressme'), get_the_time(__('Y', 'xpressme')));
|
---|
467 | if (is_author()){
|
---|
468 | if (empty($selected_author))
|
---|
469 | $output = sprintf(__('Archive for the ‘%s’ Author', 'xpressme'), get_author_name( get_query_var('author')));
|
---|
470 | }
|
---|
471 | if (is_search())
|
---|
472 | $output = sprintf(__('Search Results of word ‘%s’', 'xpressme'), get_search_query());
|
---|
473 |
|
---|
474 | if (!empty($selected_author)){
|
---|
475 | $selected_id = xpress_selected_author_id(false);
|
---|
476 | // $output = get_avatar($selected_id,$size = '32') . sprintf(__('Article of %s', 'xpressme'), $selected_author) . ' - ' . $output;
|
---|
477 | if (empty($output))
|
---|
478 | $output = sprintf(__('Article of %s', 'xpressme'), $selected_author) ;
|
---|
479 | else
|
---|
480 | $output = sprintf(__('Article of %s', 'xpressme'), $selected_author) . ' - ' . $output;
|
---|
481 | }
|
---|
482 | if ($display)
|
---|
483 | echo $output;
|
---|
484 | else
|
---|
485 | return $output;
|
---|
486 | }
|
---|
487 |
|
---|
488 | function xpress_pings_list($show = false){
|
---|
489 |
|
---|
490 | $trackbacks = xpress_get_pings();
|
---|
491 | if (! empty($trackbacks)) {
|
---|
492 | $output = '<ol id="xpress_pingslist"> ';
|
---|
493 |
|
---|
494 | foreach ($trackbacks as $trackback){
|
---|
495 | $list = date(get_settings('date_format'),$trackback['date']) . ' <a target="_blank" href="' . $trackback['site_url'] . '" rel="external nofollow">' . sprintf(__('From %1$s on site %2$s','xpressme'),$trackback['title'],$trackback['site_name']) . "</a>\n" ;
|
---|
496 |
|
---|
497 | $output .= '<li>';
|
---|
498 | $output .= $list ;
|
---|
499 | $output .= '</li>';
|
---|
500 |
|
---|
501 | }
|
---|
502 | $output .= '</ol>' ;
|
---|
503 | } else {
|
---|
504 | $output = '';
|
---|
505 | }
|
---|
506 |
|
---|
507 | if ($show) echo $output; else return $output;
|
---|
508 | }
|
---|
509 |
|
---|
510 | function xpress_pings_number( $zero = false, $one = false, $more = false, $deprecated = '' ) {
|
---|
511 | $pings = xpress_get_pings();
|
---|
512 | if (empty($pings)){
|
---|
513 | $number = 0;
|
---|
514 | }else {
|
---|
515 | $number = count($pings);
|
---|
516 | }
|
---|
517 | if ( $number > 1 )
|
---|
518 | $output = str_replace('%', number_format_i18n($number), ( false === $more ) ? __('% TrackBack/Pingback', 'xpressme') : $more);
|
---|
519 | elseif ( $number == 0 )
|
---|
520 | $output = ( false === $zero ) ? __('No Trackback/Pingback', 'xpressme') : $zero;
|
---|
521 | else // must be one
|
---|
522 | $output = ( false === $one ) ? __('One Trackback/Pingback', 'xpressme') : $one;
|
---|
523 |
|
---|
524 | echo $output;
|
---|
525 | }
|
---|
526 |
|
---|
527 |
|
---|
528 | function xpress_get_pings()
|
---|
529 | {
|
---|
530 | global $withcomments, $post, $wpdb, $id, $trackback, $user_login, $user_ID, $user_identity;
|
---|
531 |
|
---|
532 | if ( ! (is_single() || is_page() || $withcomments) )
|
---|
533 | return;
|
---|
534 |
|
---|
535 | /** @todo Use API instead of SELECTs. */
|
---|
536 | if ( $user_ID) {
|
---|
537 | $trackbacks = $wpdb->get_results(sprintf("SELECT * FROM $wpdb->comments WHERE comment_post_ID = %d AND (comment_approved = '1' OR ( user_id = %d AND comment_approved = '0' ) ) AND ( comment_type = 'trackback' OR comment_type = 'pingback' ) ORDER BY comment_date", $post->ID, $user_ID));
|
---|
538 | } else if ( empty($trackback_author) ) {
|
---|
539 | $trackbacks = $wpdb->get_results(sprintf("SELECT * FROM $wpdb->comments WHERE comment_post_ID = %d AND comment_approved = '1' AND ( comment_type = 'trackback' OR comment_type = 'pingback' ) ORDER BY comment_date", $post->ID));
|
---|
540 | } else {
|
---|
541 | $trackbacks = $wpdb->get_results(sprintf("SELECT * FROM $wpdb->comments WHERE comment_post_ID = %d AND ( comment_approved = '1' OR ( comment_author = %s AND comment_author_email = %s AND comment_approved = '0' ) ) AND ( comment_type = 'trackback' OR comment_type = 'pingback' ) ORDER BY comment_date", $post->ID, $trackback_author, $trackback_author_email));
|
---|
542 | }
|
---|
543 |
|
---|
544 | if ($trackbacks){
|
---|
545 | $ret = array();
|
---|
546 | foreach ($trackbacks as $trackback){
|
---|
547 |
|
---|
548 | $pattern = '<strong>(.*)<\/strong>(.*)';
|
---|
549 | if ( preg_match ( "/".$pattern."/i", $trackback->comment_content , $match ) ){
|
---|
550 | $title = $match[1];
|
---|
551 | $content = $match[2];
|
---|
552 | }
|
---|
553 | if (empty($title)) $title = $trackback->comment_author;
|
---|
554 |
|
---|
555 |
|
---|
556 | $row_data = array(
|
---|
557 | 'ID' => $trackback->comment_ID ,
|
---|
558 | 'post_ID' => $trackback->comment_post_ID ,
|
---|
559 | 'site_name' => $trackback->comment_author ,
|
---|
560 | 'site_url' => $trackback->comment_author_url ,
|
---|
561 | 'title' => $title ,
|
---|
562 | 'content' => $content ,
|
---|
563 | 'date' => $trackback->comment_date ,
|
---|
564 | 'date_gmt' => $trackback->comment_date_gmt ,
|
---|
565 | 'agent' => $trackback->comment_agent ,
|
---|
566 | 'type' => $trackback->comment_type ,
|
---|
567 | 'IP' => $trackback->comment_author_IP ,
|
---|
568 | );
|
---|
569 | array_push($ret,$row_data);
|
---|
570 | }
|
---|
571 | return $ret;
|
---|
572 | }
|
---|
573 | return false;
|
---|
574 | }
|
---|
575 | ?>
|
---|