Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
08/13/2009 01:24:21 AM (17 years ago)
Author:
apeatling
Message:

Add first revision of new default BuddyPress parent theme. This theme is designed to be extended from with child themes, not used directly. The original default themes from the old two theme system are deprecated, but will remain compatible with 1.1. Still more work to do there.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-status/bp-status-filters.php

    r1621 r1655  
    11<?php
    22
    3 add_filter( 'bp_get_the_status', 'bp_status_filter_tags' );
    4 add_filter( 'bp_get_the_status', 'force_balance_tags' );
    5 add_filter( 'bp_get_the_status', 'wptexturize' );
    6 add_filter( 'bp_get_the_status', 'convert_smilies' );
    7 add_filter( 'bp_get_the_status', 'convert_chars' );
    8 add_filter( 'bp_get_the_status', 'make_clickable' );
    9 add_filter( 'bp_get_the_status', 'stripslashes_deep' );
     3add_filter( 'the_status_content', 'bp_status_filter_tags' );
     4add_filter( 'the_status_content', 'force_balance_tags' );
     5add_filter( 'the_status_content', 'wptexturize' );
     6add_filter( 'the_status_content', 'convert_smilies' );
     7add_filter( 'the_status_content', 'convert_chars' );
     8add_filter( 'the_status_content', 'make_clickable' );
     9add_filter( 'the_status_content', 'stripslashes_deep' );
     10
     11add_filter( 'bp_get_the_status', 'wpautop' );
    1012
    1113function bp_status_filter_tags( $status ) {
Note: See TracChangeset for help on using the changeset viewer.