Question about bp_activity_action
-
Right now I am trying to make my own custom entry.php for my activity loops. When looking at the bp-default one to get a good idea of what one should look like i ran into the following code.
<?php bp_activity_action(); ?>
Now I found this function in bp-activity-template.php in the github project, but that was not too helpful either. The file doesn’t document the $args that it can take nor does it tell me too much information.
/** * Output the activity action. * * @since 1.2.0 * * @param array $args See bp_get_activity_action(). * @uses bp_get_activity_action() */ function bp_activity_action( $args = array() ) { echo bp_get_activity_action( $args ); }
Anyone with some experience using this? If so can you clear up what this function does and how I can use it?
- The topic ‘Question about bp_activity_action’ is closed to new replies.