Take filter from multiple functions

You can return $html[‘abc’] and add $html as parameter in each function and to the filter. Exemple for the function: function second_callback($html){ $html[‘def’]= ‘uvw’; return $html[‘def’]; }

Output checkbox per user and save in plugin options

Change the [user] to [users][]. Hope that will fix the problem. Now you’ll get all the value in associative array within [users][‘your-checkbox-data-array’] So your code will be like- <?php $WPusers = get_users( ‘orderby=nicename&role=administrator’ ); foreach ( $WPusers as $user ) { ?> <input type=”checkbox” name=”<?php echo $this->plugin_name; ?>[users][]” id=”<?php echo $this->plugin_name; ?>-users” value=”<?php echo $user->ID; … Read more

How do I pull post from standard post format?

The terms parameter will only accept custom post types and, like you mentioned, post-format-standard is not one. Try instead to use the ‘NOT IN’ operator to test against the custom posts you don’t want to display (all in this case): $query = array( ‘showposts’ => 5, ‘post_type’ => ‘post’, ‘tax_query’ => array( ‘relation’ => ‘OR’, … Read more

Get title from IDs in a string

get_the_title takes an int, not an array of ints, and therefore returns a string, not an array of strings. So just break that bit out into a loop: $titles=””; foreach ($act_name as $act_name_item) { $titles .= ($titles ? ‘,’ : ”) . get_the_title ($act_name_item); }