Last active
December 15, 2018 15:18
-
-
Save LiamBailey/04b246101f39b8c0ac11db9190698198 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | |
add_action('admin_menu', 'add_custom_featured_product_link'); | |
function add_custom_featured_product_link() { | |
global $submenu; | |
$permalink = add_query_arg(array('post_type' => 'product','product_visibility' => 'featured'), admin_url('edit.php')); | |
$submenu['edit.php?post_type=product'][] = array( 'Featured Products', 'manage_options', $permalink ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment