how to use woocommerce actions inside WP Query
I have written this code in my plugin to create custom links in the woocommerce my-account from custom post type.
i have a 'post_type' => 'links'.
but code not works.
woocommerce codes works out of the loop properly. But inside the while of WP_Query Do not add any links.
Please help me, I've been looking for the solution for the whole day
$link_posts_args = array(
'post_type' => 'links',
);
$link_posts = new WP_Query($link_posts_args);
if ($link_posts->have_posts()) {
while ($link_posts->have_posts()) {
$link_posts->the_post();
/**
* Register new endpoint to use inside My Account page.
*/
function wwd_custom_endpoints()
{
add_rewrite_endpoint('link1', EP_ROOT | EP_PAGES);
}
add_action('init', 'wwd_custom_endpoints');
/**
* Add new query var.
*
* @param array $vars
* @return array
*/
function wwd_custom_query_vars($vars)
{
$vars = 'link1';
return $vars;
}
add_filter('query_vars', 'wwd_custom_query_vars', 0);
/**
* Flush rewrite rules on plugin activation.
*/
function wwd_custom_flush_rewrite_rules()
{
add_rewrite_endpoint('link1', EP_ROOT | EP_PAGES);
flush_rewrite_rules();
}
register_activation_hook(__FILE__, 'wwd_custom_flush_rewrite_rules');
register_deactivation_hook(__FILE__, 'wwd_custom_flush_rewrite_rules');
/**
* Custom help to add new items into an array after a selected item.
*
* @param array $items
* @param array $new_items
* @param string $after
* @return array
*/
function wwd_custom_insert_after_helper($items, $new_items, $after)
{
// Search for the item position and +1 since is after the selected item key.
$position = array_search($after, array_keys($items)) + 1;
// Insert the new item.
$array = array_slice($items, 0, $position, true);
$array += $new_items;
$array += array_slice($items, $position, count($items) - $position, true);
return $array;
}
/**
* Insert the new endpoint into the My Account menu.
*
* @param array $items
* @return array
*/
function wwd_custom_my_account_menu_items($items)
{
// Remove the logout menu item.
$logout = $items['customer-logout'];
unset($items['customer-logout']);
// Insert your custom endpoint.
$new_items = array();
$new_items['link1'] = __('link name', 'woocommerce');
// Insert back the logout item.
$items['customer-logout'] = $logout;
return wwd_custom_insert_after_helper($items, $new_items, 'orders');
}
add_filter('woocommerce_account_menu_items', 'wwd_custom_my_account_menu_items');
/**
* Endpoint HTML content.
*/
function wwd_custom_endpoint_content()
{
get_the_content();
}
add_action('woocommerce_account_link1_endpoint', 'wwd_custom_endpoint_content');
/*
* Change endpoint title.
*
* @param string $title
* @return string
*/
function my_custom_endpoint_title($title)
{
global $wp_query;
$is_endpoint = isset($wp_query->query_vars['link1']);
if ($is_endpoint && !is_admin() && is_main_query() && in_the_loop() && is_account_page()) {
// New page title.
$title = __('My Custom Endpoint', 'woocommerce');
remove_filter('the_title', 'my_custom_endpoint_title');
}
return $title;
}
add_filter('the_title', 'my_custom_endpoint_title');
}
}
php wordpress woocommerce
add a comment |
I have written this code in my plugin to create custom links in the woocommerce my-account from custom post type.
i have a 'post_type' => 'links'.
but code not works.
woocommerce codes works out of the loop properly. But inside the while of WP_Query Do not add any links.
Please help me, I've been looking for the solution for the whole day
$link_posts_args = array(
'post_type' => 'links',
);
$link_posts = new WP_Query($link_posts_args);
if ($link_posts->have_posts()) {
while ($link_posts->have_posts()) {
$link_posts->the_post();
/**
* Register new endpoint to use inside My Account page.
*/
function wwd_custom_endpoints()
{
add_rewrite_endpoint('link1', EP_ROOT | EP_PAGES);
}
add_action('init', 'wwd_custom_endpoints');
/**
* Add new query var.
*
* @param array $vars
* @return array
*/
function wwd_custom_query_vars($vars)
{
$vars = 'link1';
return $vars;
}
add_filter('query_vars', 'wwd_custom_query_vars', 0);
/**
* Flush rewrite rules on plugin activation.
*/
function wwd_custom_flush_rewrite_rules()
{
add_rewrite_endpoint('link1', EP_ROOT | EP_PAGES);
flush_rewrite_rules();
}
register_activation_hook(__FILE__, 'wwd_custom_flush_rewrite_rules');
register_deactivation_hook(__FILE__, 'wwd_custom_flush_rewrite_rules');
/**
* Custom help to add new items into an array after a selected item.
*
* @param array $items
* @param array $new_items
* @param string $after
* @return array
*/
function wwd_custom_insert_after_helper($items, $new_items, $after)
{
// Search for the item position and +1 since is after the selected item key.
$position = array_search($after, array_keys($items)) + 1;
// Insert the new item.
$array = array_slice($items, 0, $position, true);
$array += $new_items;
$array += array_slice($items, $position, count($items) - $position, true);
return $array;
}
/**
* Insert the new endpoint into the My Account menu.
*
* @param array $items
* @return array
*/
function wwd_custom_my_account_menu_items($items)
{
// Remove the logout menu item.
$logout = $items['customer-logout'];
unset($items['customer-logout']);
// Insert your custom endpoint.
$new_items = array();
$new_items['link1'] = __('link name', 'woocommerce');
// Insert back the logout item.
$items['customer-logout'] = $logout;
return wwd_custom_insert_after_helper($items, $new_items, 'orders');
}
add_filter('woocommerce_account_menu_items', 'wwd_custom_my_account_menu_items');
/**
* Endpoint HTML content.
*/
function wwd_custom_endpoint_content()
{
get_the_content();
}
add_action('woocommerce_account_link1_endpoint', 'wwd_custom_endpoint_content');
/*
* Change endpoint title.
*
* @param string $title
* @return string
*/
function my_custom_endpoint_title($title)
{
global $wp_query;
$is_endpoint = isset($wp_query->query_vars['link1']);
if ($is_endpoint && !is_admin() && is_main_query() && in_the_loop() && is_account_page()) {
// New page title.
$title = __('My Custom Endpoint', 'woocommerce');
remove_filter('the_title', 'my_custom_endpoint_title');
}
return $title;
}
add_filter('the_title', 'my_custom_endpoint_title');
}
}
php wordpress woocommerce
add a comment |
I have written this code in my plugin to create custom links in the woocommerce my-account from custom post type.
i have a 'post_type' => 'links'.
but code not works.
woocommerce codes works out of the loop properly. But inside the while of WP_Query Do not add any links.
Please help me, I've been looking for the solution for the whole day
$link_posts_args = array(
'post_type' => 'links',
);
$link_posts = new WP_Query($link_posts_args);
if ($link_posts->have_posts()) {
while ($link_posts->have_posts()) {
$link_posts->the_post();
/**
* Register new endpoint to use inside My Account page.
*/
function wwd_custom_endpoints()
{
add_rewrite_endpoint('link1', EP_ROOT | EP_PAGES);
}
add_action('init', 'wwd_custom_endpoints');
/**
* Add new query var.
*
* @param array $vars
* @return array
*/
function wwd_custom_query_vars($vars)
{
$vars = 'link1';
return $vars;
}
add_filter('query_vars', 'wwd_custom_query_vars', 0);
/**
* Flush rewrite rules on plugin activation.
*/
function wwd_custom_flush_rewrite_rules()
{
add_rewrite_endpoint('link1', EP_ROOT | EP_PAGES);
flush_rewrite_rules();
}
register_activation_hook(__FILE__, 'wwd_custom_flush_rewrite_rules');
register_deactivation_hook(__FILE__, 'wwd_custom_flush_rewrite_rules');
/**
* Custom help to add new items into an array after a selected item.
*
* @param array $items
* @param array $new_items
* @param string $after
* @return array
*/
function wwd_custom_insert_after_helper($items, $new_items, $after)
{
// Search for the item position and +1 since is after the selected item key.
$position = array_search($after, array_keys($items)) + 1;
// Insert the new item.
$array = array_slice($items, 0, $position, true);
$array += $new_items;
$array += array_slice($items, $position, count($items) - $position, true);
return $array;
}
/**
* Insert the new endpoint into the My Account menu.
*
* @param array $items
* @return array
*/
function wwd_custom_my_account_menu_items($items)
{
// Remove the logout menu item.
$logout = $items['customer-logout'];
unset($items['customer-logout']);
// Insert your custom endpoint.
$new_items = array();
$new_items['link1'] = __('link name', 'woocommerce');
// Insert back the logout item.
$items['customer-logout'] = $logout;
return wwd_custom_insert_after_helper($items, $new_items, 'orders');
}
add_filter('woocommerce_account_menu_items', 'wwd_custom_my_account_menu_items');
/**
* Endpoint HTML content.
*/
function wwd_custom_endpoint_content()
{
get_the_content();
}
add_action('woocommerce_account_link1_endpoint', 'wwd_custom_endpoint_content');
/*
* Change endpoint title.
*
* @param string $title
* @return string
*/
function my_custom_endpoint_title($title)
{
global $wp_query;
$is_endpoint = isset($wp_query->query_vars['link1']);
if ($is_endpoint && !is_admin() && is_main_query() && in_the_loop() && is_account_page()) {
// New page title.
$title = __('My Custom Endpoint', 'woocommerce');
remove_filter('the_title', 'my_custom_endpoint_title');
}
return $title;
}
add_filter('the_title', 'my_custom_endpoint_title');
}
}
php wordpress woocommerce
I have written this code in my plugin to create custom links in the woocommerce my-account from custom post type.
i have a 'post_type' => 'links'.
but code not works.
woocommerce codes works out of the loop properly. But inside the while of WP_Query Do not add any links.
Please help me, I've been looking for the solution for the whole day
$link_posts_args = array(
'post_type' => 'links',
);
$link_posts = new WP_Query($link_posts_args);
if ($link_posts->have_posts()) {
while ($link_posts->have_posts()) {
$link_posts->the_post();
/**
* Register new endpoint to use inside My Account page.
*/
function wwd_custom_endpoints()
{
add_rewrite_endpoint('link1', EP_ROOT | EP_PAGES);
}
add_action('init', 'wwd_custom_endpoints');
/**
* Add new query var.
*
* @param array $vars
* @return array
*/
function wwd_custom_query_vars($vars)
{
$vars = 'link1';
return $vars;
}
add_filter('query_vars', 'wwd_custom_query_vars', 0);
/**
* Flush rewrite rules on plugin activation.
*/
function wwd_custom_flush_rewrite_rules()
{
add_rewrite_endpoint('link1', EP_ROOT | EP_PAGES);
flush_rewrite_rules();
}
register_activation_hook(__FILE__, 'wwd_custom_flush_rewrite_rules');
register_deactivation_hook(__FILE__, 'wwd_custom_flush_rewrite_rules');
/**
* Custom help to add new items into an array after a selected item.
*
* @param array $items
* @param array $new_items
* @param string $after
* @return array
*/
function wwd_custom_insert_after_helper($items, $new_items, $after)
{
// Search for the item position and +1 since is after the selected item key.
$position = array_search($after, array_keys($items)) + 1;
// Insert the new item.
$array = array_slice($items, 0, $position, true);
$array += $new_items;
$array += array_slice($items, $position, count($items) - $position, true);
return $array;
}
/**
* Insert the new endpoint into the My Account menu.
*
* @param array $items
* @return array
*/
function wwd_custom_my_account_menu_items($items)
{
// Remove the logout menu item.
$logout = $items['customer-logout'];
unset($items['customer-logout']);
// Insert your custom endpoint.
$new_items = array();
$new_items['link1'] = __('link name', 'woocommerce');
// Insert back the logout item.
$items['customer-logout'] = $logout;
return wwd_custom_insert_after_helper($items, $new_items, 'orders');
}
add_filter('woocommerce_account_menu_items', 'wwd_custom_my_account_menu_items');
/**
* Endpoint HTML content.
*/
function wwd_custom_endpoint_content()
{
get_the_content();
}
add_action('woocommerce_account_link1_endpoint', 'wwd_custom_endpoint_content');
/*
* Change endpoint title.
*
* @param string $title
* @return string
*/
function my_custom_endpoint_title($title)
{
global $wp_query;
$is_endpoint = isset($wp_query->query_vars['link1']);
if ($is_endpoint && !is_admin() && is_main_query() && in_the_loop() && is_account_page()) {
// New page title.
$title = __('My Custom Endpoint', 'woocommerce');
remove_filter('the_title', 'my_custom_endpoint_title');
}
return $title;
}
add_filter('the_title', 'my_custom_endpoint_title');
}
}
php wordpress woocommerce
php wordpress woocommerce
edited Nov 12 '18 at 23:07
behnam
asked Nov 12 '18 at 23:00
behnambehnam
12
12
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53271337%2fhow-to-use-woocommerce-actions-inside-wp-query%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53271337%2fhow-to-use-woocommerce-actions-inside-wp-query%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown