Skip to content

Instantly share code, notes, and snippets.

View williamsba's full-sized avatar

Brad Williams williamsba

View GitHub Profile
<div class="social-links">
<!--<a class="email-us" href="/contact">Contact Us</a>-->
<a class="facebook fontello" href="http://www.facebook.com/webdevstudios" title="Facebook"></a>
<a class="twitter fontello" href="http://www.twitter.com/webdevstudios" title="Twitter"></a>
<a class="gplus fontello" href="http://gplus.to/WebDevStudios" title="Google +"></a>
<a class="rss fontello" href="http://feeds.feedburner.com/webdevstudios" title="RSS"></a>
<!--<a class="flicker" href="http://www.flickr.com/photos/tags/webdevstudios/">Flicker</a>-->
</div>
<?php
/**
* Plugin Name: BadgeOS DMA Print
* Plugin URI: http://WebDevStudios.com
* Description: Custom class for DMA printing
* Version: 1.0
* Author: WebDevStudios
* Author URI: http://WebDevStudios.com
*/
function dma_rewards_user_has_prereqs( $user_id = 0, $reward_id = 0 ) {
$user_id = dma_get_user_id( $user_id );
$args = array(
'post_type' => 'badge',
'connected_type' => 'badge-to-badgeos-rewards',
'connected_items' => $reward_id,
'nopaging' => true,
'supress_filters' => false
array
0 =>
object(stdClass)[226]
public 'ID' => int 85
public 'title' => string 'Reward with Inventory' (length=21)
public 'excerpt' => string '' (length=0)
public 'content' => string '' (length=0)
public 'thumbnail' => string '' (length=0)
public 'points' => string '500' (length=3)
public 'start_date' => string '' (length=0)
$rewards = dma_get_available_rewards_for_user();
foreach ( $rewards as $reward ) {
echo '<p>' .$reward->title .'</p>';
}
$args = array(
'author' => $current_user->ID,
'post_type' => 'gws-idea-entries',
'meta-key' => 'idea-entry-post-id',
'meta_value' => absint( $idea_board_id ),
'posts_per_page' => '-1'
);