forked from dimensionmedia/buddystrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
functions.php
815 lines (706 loc) · 28.1 KB
/
functions.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
<?php
/**
* BP-Default theme functions and definitions
*
* Sets up the theme and provides some helper functions. Some helper functions
* are used in the theme as custom template tags. Others are attached to action and
* filter hooks in WordPress and BuddyPress to change core functionality.
*
* The first function, bp_dtheme_setup(), sets up the theme by registering support
* for various features in WordPress, such as post thumbnails and navigation menus, and
* for BuddyPress, action buttons and javascript localisation.
*
* When using a child theme (see http://codex.wordpress.org/Theme_Development, http://codex.wordpress.org/Child_Themes
* and http://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/), you can override
* certain functions (those wrapped in a function_exists() call) by defining them first in your
* child theme's functions.php file. The child theme's functions.php file is included before the
* parent theme's file, so the child theme functions would be used.
*
* Functions that are not pluggable (not wrapped in function_exists()) are instead attached
* to a filter or action hook. The hook can be removed by using remove_action() or
* remove_filter() and you can attach your own function to the hook.
*
* For more information on hooks, actions, and filters, see http://codex.wordpress.org/Plugin_API.
*
* @package BuddyPress
* @subpackage BP-Default
* @since 1.2
*/
// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) exit;
// If BuddyPress is not activated, switch back to the default WP theme and bail out
if ( ! function_exists( 'bp_is_active' ) ) {
switch_theme( WP_DEFAULT_THEME, WP_DEFAULT_THEME );
return;
}
// Include some external function files
include('functions-bp.php');
include('functions-comments.php');
include('functions-groups.php');
include('functions-members.php');
include('functions-messages.php');
include('functions-notifications.php');
/**
* Set the content width based on the theme's design and stylesheet.
*
* Used to set the width of images and content. Should be equal to the width the theme
* is designed for, generally via the style.css stylesheet.
*/
if ( ! isset( $content_width ) )
$content_width = 591;
if ( ! function_exists( 'bp_dtheme_setup' ) ) :
/**
* Sets up theme defaults and registers support for various WordPress and BuddyPress features.
*
* Note that this function is hooked into the after_setup_theme hook, which runs
* before the init hook. The init hook is too late for some features, such as indicating
* support post thumbnails.
*
* To override bp_dtheme_setup() in a child theme, add your own bp_dtheme_setup to your child theme's
* functions.php file.
*
* @global BuddyPress $bp The one true BuddyPress instance
* @since BuddyPress (1.5)
*/
function bp_dtheme_setup() {
// Load the AJAX functions for the theme
require( TEMPLATEPATH . '/_inc/ajax.php' );
// This theme styles the visual editor with editor-style.css to match the theme style.
add_editor_style();
// This theme comes with all the BuddyPress goodies
add_theme_support( 'buddypress' );
// This theme uses post thumbnails
add_theme_support( 'post-thumbnails' );
// Add default posts and comments RSS feed links to head
add_theme_support( 'automatic-feed-links' );
// Add responsive layout support to bp-default without forcing child
// themes to inherit it if they don't want to
add_theme_support( 'bp-default-responsive' );
// This theme uses wp_nav_menu() in one location.
register_nav_menus( array(
'primary' => __( 'Primary Navigation', 'buddypress' ),
) );
// This theme allows users to set a custom background
$custom_background_args = array(
'wp-head-callback' => 'bp_dtheme_custom_background_style'
);
add_theme_support( 'custom-background', $custom_background_args );
// Add custom header support if allowed
if ( !defined( 'BP_DTHEME_DISABLE_CUSTOM_HEADER' ) ) {
define( 'HEADER_TEXTCOLOR', 'FFFFFF' );
// The height and width of your custom header. You can hook into the theme's own filters to change these values.
// Add a filter to bp_dtheme_header_image_width and bp_dtheme_header_image_height to change these values.
define( 'HEADER_IMAGE_WIDTH', apply_filters( 'bp_dtheme_header_image_width', 1250 ) );
define( 'HEADER_IMAGE_HEIGHT', apply_filters( 'bp_dtheme_header_image_height', 133 ) );
// We'll be using post thumbnails for custom header images on posts and pages. We want them to be 1250 pixels wide by 133 pixels tall.
// Larger images will be auto-cropped to fit, smaller ones will be ignored.
set_post_thumbnail_size( HEADER_IMAGE_WIDTH, HEADER_IMAGE_HEIGHT, true );
// Add a way for the custom header to be styled in the admin panel that controls custom headers.
$custom_header_args = array(
'wp-head-callback' => 'bp_dtheme_header_style',
'admin-head-callback' => 'bp_dtheme_admin_header_style'
);
add_theme_support( 'custom-header', $custom_header_args );
}
if ( !is_admin() ) {
// Register buttons for the relevant component templates
// Friends button
if ( bp_is_active( 'friends' ) )
add_action( 'bp_member_header_actions', 'bp_add_friend_button', 5 );
// Activity button
if ( bp_is_active( 'activity' ) )
add_action( 'bp_member_header_actions', 'bp_send_public_message_button', 20 );
// Messages button
if ( bp_is_active( 'messages' ) )
add_action( 'bp_member_header_actions', 'bp_send_private_message_button', 20 );
// Group buttons
if ( bp_is_active( 'groups' ) ) {
add_action( 'bp_group_header_actions', 'bp_group_join_button', 5 );
add_action( 'bp_group_header_actions', 'bp_group_new_topic_button', 20 );
add_action( 'bp_directory_groups_actions', 'bp_group_join_button' );
}
// Blog button
if ( bp_is_active( 'blogs' ) )
add_action( 'bp_directory_blogs_actions', 'bp_blogs_visit_blog_button' );
}
}
add_action( 'after_setup_theme', 'bp_dtheme_setup' );
endif;
if ( !function_exists( 'bp_dtheme_enqueue_scripts' ) ) :
/**
* Enqueue theme javascript safely
*
* @see http://codex.wordpress.org/Function_Reference/wp_enqueue_script
* @since BuddyPress (1.5)
*/
function bp_dtheme_enqueue_scripts() {
// Enqueue the global JS - Ajax will not work without it
wp_enqueue_script( 'dtheme-ajax-js', get_template_directory_uri() . '/_inc/global.js', array( 'jquery' ), bp_get_version() );
// Enqueue the twitter bootstrap js
wp_register_script( "twitter-bootstrap", get_bloginfo('template_directory') . "/_inc/bootstrap/js/bootstrap.js", array( 'jquery' ) );
// Add words that we need to use in JS to the end of the page so they can be translated and still used.
$params = array(
'my_favs' => __( 'My Favorites', 'buddypress' ),
'accepted' => __( 'Accepted', 'buddypress' ),
'rejected' => __( 'Rejected', 'buddypress' ),
'show_all_comments' => __( 'Show all comments for this thread', 'buddypress' ),
'show_all' => __( 'Show all', 'buddypress' ),
'comments' => __( 'comments', 'buddypress' ),
'close' => __( 'Close', 'buddypress' ),
'view' => __( 'View', 'buddypress' ),
'mark_as_fav' => __( 'Favorite', 'buddypress' ),
'remove_fav' => __( 'Remove Favorite', 'buddypress' )
);
wp_localize_script( 'dtheme-ajax-js', 'BP_DTheme', $params );
// Maybe enqueue comment reply JS
if ( is_singular() && bp_is_blog_page() && get_option( 'thread_comments' ) )
wp_enqueue_script( 'comment-reply' );
wp_enqueue_script('twitter-bootstrap');
}
add_action( 'wp_enqueue_scripts', 'bp_dtheme_enqueue_scripts' );
endif;
if ( !function_exists( 'bp_dtheme_enqueue_styles' ) ) :
/**
* Enqueue theme CSS safely
*
* For maximum flexibility, BuddyPress Default's stylesheet is enqueued, using wp_enqueue_style().
* If you're building a child theme of bp-default, your stylesheet will also be enqueued,
* automatically, as dependent on bp-default's CSS. For this reason, bp-default child themes are
* not recommended to include bp-default's stylesheet using @import.
*
* If you would prefer to use @import, or would like to change the way in which stylesheets are
* enqueued, you can override bp_dtheme_enqueue_styles() in your theme's functions.php file.
*
* @see http://codex.wordpress.org/Function_Reference/wp_enqueue_style
* @see http://codex.buddypress.org/releases/1-5-developer-and-designer-information/
* @since BuddyPress (1.5)
*/
function bp_dtheme_enqueue_styles() {
// Register our bootstrap files
wp_register_style( 'twitter-bootstrap-css', get_bloginfo('template_directory') . '/_inc/bootstrap/css/bootstrap.css', array(), $version );
wp_register_style( 'twitter-bootstrap-responsive-css', get_bloginfo('template_directory') . '/_inc/bootstrap/css/bootstrap-responsive.css', array(), $version );
// Register our main stylesheet, which are mainly adjustments after bootstrap does it's thing
// wp_register_style( 'bp-default-main', get_template_directory_uri() . '/_inc/css/default.css', array(), bp_get_version() );
wp_register_style( 'bp-layout-main', get_template_directory_uri() . '/_inc/css/layout.css', array(), bp_get_version() );
// If the current theme is a child of bp-default, enqueue its stylesheet
if ( is_child_theme() && 'bp-default' == get_template() ) {
wp_enqueue_style( get_stylesheet(), get_stylesheet_uri(), array( 'bp-default-main' ), bp_get_version() );
}
// Enqueue the main stylesheet
// wp_enqueue_style( 'bp-default-main' );
wp_enqueue_style( 'twitter-bootstrap-css' );
wp_enqueue_style( 'twitter-bootstrap-responsive-css' );
wp_enqueue_style( 'bp-layout-main' );
// Default CSS RTL
if ( is_rtl() )
wp_enqueue_style( 'bp-default-main-rtl', get_template_directory_uri() . '/_inc/css/default-rtl.css', array( 'bp-default-main' ), bp_get_version() );
// Responsive layout
if ( current_theme_supports( 'bp-default-responsive' ) ) {
wp_enqueue_style( 'bp-default-responsive', get_template_directory_uri() . '/_inc/css/responsive.css', array( 'bp-default-main' ), bp_get_version() );
if ( is_rtl() ) {
wp_enqueue_style( 'bp-default-responsive-rtl', get_template_directory_uri() . '/_inc/css/responsive-rtl.css', array( 'bp-default-responsive' ), bp_get_version() );
}
}
}
add_action( 'wp_enqueue_scripts', 'bp_dtheme_enqueue_styles' );
endif;
if ( !function_exists( 'bp_dtheme_admin_header_style' ) ) :
/**
* Styles the header image displayed on the Appearance > Header admin panel.
*
* Referenced via add_custom_image_header() in bp_dtheme_setup().
*
* @since 1.2
*/
function bp_dtheme_admin_header_style() {
?>
<style type="text/css">
#headimg {
position: relative;
color: #fff;
background: url(<?php header_image(); ?>);
-moz-border-radius-bottomleft: 6px;
-webkit-border-bottom-left-radius: 6px;
-moz-border-radius-bottomright: 6px;
-webkit-border-bottom-right-radius: 6px;
margin-bottom: 20px;
height: 133px;
}
#headimg h1{
position: absolute;
bottom: 15px;
left: 15px;
width: 44%;
margin: 0;
font-family: Arial, Tahoma, sans-serif;
}
#headimg h1 a{
color:#<?php header_textcolor(); ?>;
text-decoration: none;
border-bottom: none;
}
#headimg #desc{
color:#<?php header_textcolor(); ?>;
font-size:1em;
margin-top:-0.5em;
}
#desc {
display: none;
}
<?php if ( 'blank' == get_header_textcolor() ) { ?>
#headimg h1, #headimg #desc {
display: none;
}
#headimg h1 a, #headimg #desc {
color:#<?php echo HEADER_TEXTCOLOR; ?>;
}
<?php } ?>
</style>
<?php
}
endif;
if ( !function_exists( 'bp_dtheme_custom_background_style' ) ) :
/**
* The style for the custom background image or colour.
*
* Referenced via add_custom_background() in bp_dtheme_setup().
*
* @see _custom_background_cb()
* @since BuddyPress (1.5)
*/
function bp_dtheme_custom_background_style() {
$background = get_background_image();
$color = get_background_color();
if ( ! $background && ! $color )
return;
$style = $color ? "background-color: #$color;" : '';
if ( $style && !$background ) {
$style .= ' background-image: none;';
} elseif ( $background ) {
$image = " background-image: url('$background');";
$repeat = get_theme_mod( 'background_repeat', 'repeat' );
if ( ! in_array( $repeat, array( 'no-repeat', 'repeat-x', 'repeat-y', 'repeat' ) ) )
$repeat = 'repeat';
$repeat = " background-repeat: $repeat;";
$position = get_theme_mod( 'background_position_x', 'left' );
if ( ! in_array( $position, array( 'center', 'right', 'left' ) ) )
$position = 'left';
$position = " background-position: top $position;";
$attachment = get_theme_mod( 'background_attachment', 'scroll' );
if ( ! in_array( $attachment, array( 'fixed', 'scroll' ) ) )
$attachment = 'scroll';
$attachment = " background-attachment: $attachment;";
$style .= $image . $repeat . $position . $attachment;
}
?>
<style type="text/css">
body { <?php echo trim( $style ); ?> }
</style>
<?php
}
endif;
if ( !function_exists( 'bp_dtheme_header_style' ) ) :
/**
* The styles for the post thumbnails / custom page headers.
*
* Referenced via add_custom_image_header() in bp_dtheme_setup().
*
* @global WP_Query $post The current WP_Query object for the current post or page
* @since 1.2
*/
function bp_dtheme_header_style() {
global $post;
$header_image = '';
if ( is_singular() && current_theme_supports( 'post-thumbnails' ) && has_post_thumbnail( $post->ID ) ) {
$image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'post-thumbnail' );
// $src, $width, $height
if ( !empty( $image ) && $image[1] >= HEADER_IMAGE_WIDTH )
$header_image = $image[0];
else
$header_image = get_header_image();
} else {
$header_image = get_header_image();
}
?>
<style type="text/css">
<?php if ( !empty( $header_image ) ) : ?>
#header { background-image: url(<?php echo $header_image ?>); }
<?php endif; ?>
<?php if ( 'blank' == get_header_textcolor() ) { ?>
#header h1, #header #desc { display: none; }
<?php } else { ?>
#header h1 a, #desc { color:#<?php header_textcolor(); ?>; }
<?php } ?>
</style>
<?php
}
endif;
if ( !function_exists( 'bp_dtheme_widgets_init' ) ) :
/**
* Register widgetised areas, including one sidebar and four widget-ready columns in the footer.
*
* To override bp_dtheme_widgets_init() in a child theme, remove the action hook and add your own
* function tied to the init hook.
*
* @since BuddyPress (1.5)
*/
function bp_dtheme_widgets_init() {
// Area 1, located in the sidebar. Empty by default.
register_sidebar( array(
'name' => 'Sidebar',
'id' => 'sidebar-1',
'description' => __( 'The sidebar widget area', 'buddypress' ),
'before_widget' => '<div id="%1$s" class="widget %2$s">',
'after_widget' => '</div>',
'before_title' => '<h3 class="widgettitle">',
'after_title' => '</h3>'
) );
// Area 2, located in the footer. Empty by default.
register_sidebar( array(
'name' => __( 'First Footer Widget Area', 'buddypress' ),
'id' => 'first-footer-widget-area',
'description' => __( 'The first footer widget area', 'buddypress' ),
'before_widget' => '<li id="%1$s" class="widget %2$s">',
'after_widget' => '</li>',
'before_title' => '<h3 class="widgettitle">',
'after_title' => '</h3>',
) );
// Area 3, located in the footer. Empty by default.
register_sidebar( array(
'name' => __( 'Second Footer Widget Area', 'buddypress' ),
'id' => 'second-footer-widget-area',
'description' => __( 'The second footer widget area', 'buddypress' ),
'before_widget' => '<li id="%1$s" class="widget %2$s">',
'after_widget' => '</li>',
'before_title' => '<h3 class="widgettitle">',
'after_title' => '</h3>',
) );
// Area 4, located in the footer. Empty by default.
register_sidebar( array(
'name' => __( 'Third Footer Widget Area', 'buddypress' ),
'id' => 'third-footer-widget-area',
'description' => __( 'The third footer widget area', 'buddypress' ),
'before_widget' => '<li id="%1$s" class="widget %2$s">',
'after_widget' => '</li>',
'before_title' => '<h3 class="widgettitle">',
'after_title' => '</h3>',
) );
// Area 5, located in the footer. Empty by default.
register_sidebar( array(
'name' => __( 'Fourth Footer Widget Area', 'buddypress' ),
'id' => 'fourth-footer-widget-area',
'description' => __( 'The fourth footer widget area', 'buddypress' ),
'before_widget' => '<li id="%1$s" class="widget %2$s">',
'after_widget' => '</li>',
'before_title' => '<h3 class="widgettitle">',
'after_title' => '</h3>',
) );
}
add_action( 'widgets_init', 'bp_dtheme_widgets_init' );
endif;
if ( !function_exists( 'bp_dtheme_blog_comments' ) ) :
/**
* Template for comments and pingbacks.
*
* To override this walker in a child theme without modifying the comments template
* simply create your own bp_dtheme_blog_comments(), and that function will be used instead.
*
* Used as a callback by wp_list_comments() for displaying the comments.
*
* @param mixed $comment Comment record from database
* @param array $args Arguments from wp_list_comments() call
* @param int $depth Comment nesting level
* @see wp_list_comments()
* @since 1.2
*/
function bp_dtheme_blog_comments( $comment, $args, $depth ) {
$GLOBALS['comment'] = $comment;
if ( 'pingback' == $comment->comment_type )
return false;
if ( 1 == $depth )
$avatar_size = 50;
else
$avatar_size = 25;
?>
<li <?php comment_class(); ?> id="comment-<?php comment_ID(); ?>">
<div class="comment-avatar-box">
<div class="avb">
<a href="<?php echo get_comment_author_url(); ?>" rel="nofollow">
<?php if ( $comment->user_id ) : ?>
<?php echo bp_core_fetch_avatar( array( 'item_id' => $comment->user_id, 'width' => $avatar_size, 'height' => $avatar_size, 'email' => $comment->comment_author_email ) ); ?>
<?php else : ?>
<?php echo get_avatar( $comment, $avatar_size ); ?>
<?php endif; ?>
</a>
</div>
</div>
<div class="comment-content">
<div class="comment-meta">
<p>
<?php
/* translators: 1: comment author url, 2: comment author name, 3: comment permalink, 4: comment date/timestamp*/
printf( __( '<a href="%1$s" rel="nofollow">%2$s</a> said on <a href="%3$s"><span class="time-since">%4$s</span></a>', 'buddypress' ), get_comment_author_url(), get_comment_author(), get_comment_link(), get_comment_date() );
?>
</p>
</div>
<div class="comment-entry">
<?php if ( $comment->comment_approved == '0' ) : ?>
<em class="moderate"><?php _e( 'Your comment is awaiting moderation.', 'buddypress' ); ?></em>
<?php endif; ?>
<?php comment_text(); ?>
</div>
<div class="comment-options">
<?php if ( comments_open() ) : ?>
<?php comment_reply_link( array( 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ); ?>
<?php endif; ?>
<?php if ( current_user_can( 'edit_comment', $comment->comment_ID ) ) : ?>
<?php printf( '<a class="btn btn-info comment-edit-link bp-secondary-action" href="%1$s" title="%2$s">%3$s</a> ', get_edit_comment_link( $comment->comment_ID ), esc_attr__( 'Edit comment', 'buddypress' ), __( 'Edit', 'buddypress' ) ); ?>
<?php endif; ?>
</div>
</div>
<?php
}
endif;
if ( !function_exists( 'bp_dtheme_page_on_front' ) ) :
/**
* Return the ID of a page set as the home page.
*
* @return false|int ID of page set as the home page
* @since 1.2
*/
function bp_dtheme_page_on_front() {
if ( 'page' != get_option( 'show_on_front' ) )
return false;
return apply_filters( 'bp_dtheme_page_on_front', get_option( 'page_on_front' ) );
}
endif;
if ( !function_exists( 'bp_dtheme_activity_secondary_avatars' ) ) :
/**
* Add secondary avatar image to this activity stream's record, if supported.
*
* @param string $action The text of this activity
* @param BP_Activity_Activity $activity Activity object
* @package BuddyPress Theme
* @return string
* @since 1.2.6
*/
function bp_dtheme_activity_secondary_avatars( $action, $activity ) {
switch ( $activity->component ) {
case 'groups' :
case 'friends' :
// Only insert avatar if one exists
if ( $secondary_avatar = bp_get_activity_secondary_avatar() ) {
$reverse_content = strrev( $action );
$position = strpos( $reverse_content, 'a<' );
$action = substr_replace( $action, $secondary_avatar, -$position - 2, 0 );
}
break;
}
return $action;
}
add_filter( 'bp_get_activity_action_pre_meta', 'bp_dtheme_activity_secondary_avatars', 10, 2 );
endif;
if ( !function_exists( 'bp_dtheme_show_notice' ) ) :
/**
* Show a notice when the theme is activated - workaround by Ozh (http://old.nabble.com/Activation-hook-exist-for-themes--td25211004.html)
*
* @since 1.2
*/
function bp_dtheme_show_notice() {
global $pagenow;
// Bail if bp-default theme was not just activated
if ( empty( $_GET['activated'] ) || ( 'themes.php' != $pagenow ) || !is_admin() )
return;
?>
<div id="message" class="updated fade">
<p><?php printf( __( 'Theme activated! This theme contains <a href="%s">custom header image</a> support and <a href="%s">sidebar widgets</a>.', 'buddypress' ), admin_url( 'themes.php?page=custom-header' ), admin_url( 'widgets.php' ) ); ?></p>
</div>
<style type="text/css">#message2, #message0 { display: none; }</style>
<?php
}
add_action( 'admin_notices', 'bp_dtheme_show_notice' );
endif;
if ( !function_exists( 'bp_dtheme_main_nav' ) ) :
/**
* wp_nav_menu() callback from the main navigation in header.php
*
* Used when the custom menus haven't been configured.
*
* @param array Menu arguments from wp_nav_menu()
* @see wp_nav_menu()
* @since BuddyPress (1.5)
*/
function bp_dtheme_main_nav( $args ) {
$pages_args = array(
'depth' => 0,
'echo' => false,
'exclude' => '',
'title_li' => ''
);
$menu = wp_page_menu( $pages_args );
$menu = str_replace( array( '<div class="menu"><ul>', '</ul></div>' ), array( '<ul class="nav" id="nav">', '</ul><!-- #nav -->' ), $menu );
echo $menu;
do_action( 'bp_nav_items' );
}
endif;
if ( !function_exists( 'bp_dtheme_page_menu_args' ) ) :
/**
* Get our wp_nav_menu() fallback, bp_dtheme_main_nav(), to show a home link.
*
* @param array $args Default values for wp_page_menu()
* @see wp_page_menu()
* @since BuddyPress (1.5)
*/
function bp_dtheme_page_menu_args( $args ) {
$args['show_home'] = true;
return $args;
}
add_filter( 'wp_page_menu_args', 'bp_dtheme_page_menu_args' );
endif;
if ( !function_exists( 'bp_dtheme_comment_form' ) ) :
/**
* Applies BuddyPress customisations to the post comment form.
*
* @param array $default_labels The default options for strings, fields etc in the form
* @see comment_form()
* @since BuddyPress (1.5)
*/
function bp_dtheme_comment_form( $default_labels ) {
$commenter = wp_get_current_commenter();
$req = get_option( 'require_name_email' );
$aria_req = ( $req ? " aria-required='true'" : '' );
$fields = array(
'author' => '<p class="comment-form-author">' . '<label for="author">' . __( 'Name', 'buddypress' ) . ( $req ? '<span class="required"> *</span>' : '' ) . '</label> ' .
'<input id="author" name="author" type="text" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30"' . $aria_req . ' /></p>',
'email' => '<p class="comment-form-email"><label for="email">' . __( 'Email', 'buddypress' ) . ( $req ? '<span class="required"> *</span>' : '' ) . '</label> ' .
'<input id="email" name="email" type="text" value="' . esc_attr( $commenter['comment_author_email'] ) . '" size="30"' . $aria_req . ' /></p>',
'url' => '<p class="comment-form-url"><label for="url">' . __( 'Website', 'buddypress' ) . '</label>' .
'<input id="url" name="url" type="text" value="' . esc_attr( $commenter['comment_author_url'] ) . '" size="30" /></p>',
);
$new_labels = array(
'comment_field' => '<p class="form-textarea"><textarea name="comment" id="comment" cols="60" rows="10" aria-required="true"></textarea></p>',
'fields' => apply_filters( 'comment_form_default_fields', $fields ),
'logged_in_as' => '',
'must_log_in' => '<p class="alert">' . sprintf( __( 'You must be <a href="%1$s">logged in</a> to post a comment.', 'buddypress' ), wp_login_url( get_permalink() ) ) . '</p>',
'title_reply' => __( 'Leave a reply', 'buddypress' )
);
return apply_filters( 'bp_dtheme_comment_form', array_merge( $default_labels, $new_labels ) );
}
add_filter( 'comment_form_defaults', 'bp_dtheme_comment_form', 10 );
endif;
if ( !function_exists( 'bp_dtheme_before_comment_form' ) ) :
/**
* Adds the user's avatar before the comment form box.
*
* The 'comment_form_top' action is used to insert our HTML within <div id="reply">
* so that the nested comments comment-reply javascript moves the entirety of the comment reply area.
*
* @see comment_form()
* @since BuddyPress (1.5)
*/
function bp_dtheme_before_comment_form() {
?>
<div class="comment-avatar-box">
<div class="avb">
<?php if ( bp_loggedin_user_id() ) : ?>
<a href="<?php echo bp_loggedin_user_domain(); ?>">
<?php echo get_avatar( bp_loggedin_user_id(), 50 ); ?>
</a>
<?php else : ?>
<?php echo get_avatar( 0, 50 ); ?>
<?php endif; ?>
</div>
</div>
<div class="comment-content standard-form">
<?php
}
add_action( 'comment_form_top', 'bp_dtheme_before_comment_form' );
endif;
if ( !function_exists( 'bp_dtheme_after_comment_form' ) ) :
/**
* Closes tags opened in bp_dtheme_before_comment_form().
*
* @see bp_dtheme_before_comment_form()
* @see comment_form()
* @since BuddyPress (1.5)
*/
function bp_dtheme_after_comment_form() {
?>
</div><!-- .comment-content standard-form -->
<?php
}
add_action( 'comment_form', 'bp_dtheme_after_comment_form' );
endif;
if ( !function_exists( 'bp_dtheme_sidebar_login_redirect_to' ) ) :
/**
* Adds a hidden "redirect_to" input field to the sidebar login form.
*
* @since BuddyPress (1.5)
*/
function bp_dtheme_sidebar_login_redirect_to() {
$redirect_to = !empty( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '';
$redirect_to = apply_filters( 'bp_no_access_redirect', $redirect_to ); ?>
<input type="hidden" name="redirect_to" value="<?php echo esc_attr( $redirect_to ); ?>" />
<?php
}
add_action( 'bp_sidebar_login_form', 'bp_dtheme_sidebar_login_redirect_to' );
endif;
if ( !function_exists( 'bp_dtheme_content_nav' ) ) :
/**
* Display navigation to next/previous pages when applicable
*
* @global WP_Query $wp_query
* @param string $nav_id DOM ID for this navigation
* @since BuddyPress (1.5)
*/
function bp_dtheme_content_nav( $nav_id ) {
global $wp_query;
if ( !empty( $wp_query->max_num_pages ) && $wp_query->max_num_pages > 1 ) : ?>
<div id="<?php echo $nav_id; ?>" class="navigation">
<div class="alignleft"><?php next_posts_link( __( '← Previous Entries', 'buddypress' ) ); ?></div>
<div class="alignright"><?php previous_posts_link( __( 'Next Entries →', 'buddypress' ) ); ?></div>
</div><!-- #<?php echo $nav_id; ?> -->
<?php endif;
}
endif;
/**
* Adds the no-js class to the body tag.
*
* This function ensures that the <body> element will have the 'no-js' class by default. If you're
* using JavaScript for some visual functionality in your theme, and you want to provide noscript
* support, apply those styles to body.no-js.
*
* The no-js class is removed by the JavaScript created in bp_dtheme_remove_nojs_body_class().
*
* @package BuddyPress
* @since BuddyPress (1.5).1
* @see bp_dtheme_remove_nojs_body_class()
*/
function bp_dtheme_add_nojs_body_class( $classes ) {
$classes[] = 'no-js';
return array_unique( $classes );
}
add_filter( 'bp_get_the_body_class', 'bp_dtheme_add_nojs_body_class' );
/**
* Dynamically removes the no-js class from the <body> element.
*
* By default, the no-js class is added to the body (see bp_dtheme_add_no_js_body_class()). The
* JavaScript in this function is loaded into the <body> element immediately after the <body> tag
* (note that it's hooked to bp_before_header), and uses JavaScript to switch the 'no-js' body class
* to 'js'. If your theme has styles that should only apply for JavaScript-enabled users, apply them
* to body.js.
*
* This technique is borrowed from WordPress, wp-admin/admin-header.php.
*
* @package BuddyPress
* @since BuddyPress (1.5).1
* @see bp_dtheme_add_nojs_body_class()
*/
function bp_dtheme_remove_nojs_body_class() {
?><script type="text/javascript">//<![CDATA[
(function(){var c=document.body.className;c=c.replace(/no-js/,'js');document.body.className=c;})();
//]]></script>
<?php
}
add_action( 'bp_before_header', 'bp_dtheme_remove_nojs_body_class' );
?>