This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function rcp_add_affwp_affiliate_at_rcp_sub() { | |
$user_info = get_userdata(); | |
$user_id = $user_info->user_id; | |
$member = new RCP_Member( $user_id ); | |
$subscription_id = $member->get_pending_subscription_id(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$categories = get_categories( array( | |
'orderby' => 'name', | |
'parent' => 0, | |
'post_type' => 'orange_cats' | |
) ); | |
echo 'Shows all taxonomies for the given post type:'; | |
echo '<br />'; | |
foreach ( $categories as $category ) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: Orange Cats 4U | |
Plugin URI: https://catfacts.com | |
Description: Orange cats. For you! | |
Version: 1.0 | |
Author: Helena Bonham Carter | |
Author URI: https://dennys.com | |
Copyright: ok | |
Text Domain: orange-cats |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: AffiliateWP - Store Credit Custom Dashboard Notice | |
* Plugin URI: http://affiliatewp.com | |
* Description: Change the notice in the affiliate dashboard for store credit balances. | |
* Author: ramiabraham | |
* Author URI: http://affiliatewp.com | |
* Version: 1.0 | |
*/ | |
function affwp_custom_store_credit_dashboard_notice() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: AffiliateWP - Email Affiliate When Referral Paid | |
* Plugin URI: http://affiliatewp.com | |
* Description: Sends an email to the affiliate when a referral has been paid | |
* Author: Andrew Munro | |
* Author URI: http://affiliatewp.com | |
* Version: 1.0 | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Lists the following: | |
# kernel name, network node hostname, | |
# kernel release, kernel version, | |
# machine hardware name, processor type, | |
# hardware platform, operating system | |
uname –a | |
# whether your system is 32-bit or 64-bit | |
uname -m |
Get all public gists by EAL; https://gist.github.com/ericandrewlewis.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: AffiliateWP - First Referral Commission Only | |
* Plugin URI: https://affiliatewp.com | |
* Description: Modify an affiliate's commission rate for their very first referral. All other subsequent referrals will be recorded at zero. | |
* Author: ramiabraham | |
* Author URI: https://affiliatewp.com | |
* Version: 1.0 | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: AffWP Custom Meta Box Example | |
* Plugin URI: https://affiliatewp.com | |
* Description: AffWP Custom Meta Box Example | |
* Author: AffiliateWP, LLC | |
* Author URI: https://affiliatewp.com | |
* Version: 1.0 | |
* Text Domain: affwp-custom-meta-box-example | |
* */ |