Hello, thanks for reading.
We’re a relatively high-traffic site, and our logs are getting filled up by a PHP warning from Co-Authors Plus that I can’t figure out.
The error:
Message
PHP Warning: Attempt to read property “user_login” on null in /srv/htdocs/wp-content/plugins/co-authors-plus/template-tags.php on line 129
Timestamp
2024-10-13T13:07:43.000Z
Kind
plugins
Name
co-authors-plus
File
/srv/htdocs/wp-content/plugins/co-authors-plus/template-tags.php
Line
129
It’s firing multiple times per minute, so I suspect it’s on every load of a page with an entry on it.
The relevant portion from that plugin file:
do {
$author_text = '';
if ( 'tag' === $type ) {
$author_text = $tag( $tag_args );
} elseif ( 'field' === $type && isset( $i->current_author->$tag ) ) {
$author_text = $i->current_author->$tag;
} elseif ( 'callback' === $type && is_callable( $tag ) ) {
$author_text = $tag( $i->current_author );
}
// Fallback to user_login if we get something empty
if ( empty( $author_text ) ) {
$author_text = $i->current_author->user_login;
}
I can’t figure out what we’re doing wrong here. I’m not clear on what author_text is supposed to do or why it’s null. I figure the error would only fire if the user is logged-out.
Maybe there’s some workaround if we manually set that value in our loop templates? I’d love any advice; this one has been confounding.
WordPress 6.6.2 (latest)
PHP 8.3
Custom theme based on understrap
Hosted on WP.com
When editors creates a new post and the post have revisions then when we add another autor to the post and delete the original author name, both author names are being displayed on the front end and sometimes only old author name is displayed.
For example, if Editor A creates a post and then replaces their author name with the ‘Partner Content’ author, the article shows both authors instead of just the ‘Partner Content’ on the frontend.
The issue is very intermittent.
What we’ve done so far :
1. Clearing the page cache to load new author.
2. Hard refresh pages.
When going to Quick Edit post or page, many fields with the message “Click on an author to change them. Drag to change their order. Click on Remove to remove them.” appear like this
Note: My site uses ACF to create other Custom Post Types (This may be the cause of this)
How can I fix this?
]]>This plugins adds inline css on every page (with ids “co-authors-plus-coauthors-style-inline-css”, “co-authors-plus-avatar-style-inline-css”, and “co-authors-plus-image-style-inline-css”).
I have tried disabling it by adding the following code to functions.php in our theme:
add_action( 'wp_enqueue_scripts', function() {
wp_dequeue_style( 'guest-authors-css' );
wp_dequeue_style( 'coauthors-sidebar-css' );
wp_dequeue_style( 'cap-jquery-select2-css' );
wp_dequeue_style( 'co-authors-plus-css' );
}, 100 );
It’s still being added.
How do I remove this CSS?
]]>Is this plugin still being maintained? I see no replies to support tickets for quite some time.
]]>Hi there – is it possible to have guest authors showing up in custom post types?
]]>Hello,
I encountered a SQL syntax error in CoAuthorsPlus plugin when running a WP-CLI command wp co-authors-plus assign-user-to-coauthor
. The error message is as follows:
[11-Jul-2024 04:19:32 UTC] WordPress database error You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '','page)' at line 1 for query SELECT ID FROM wp_posts WHERE post_author=270 AND post_type IN (post','page) made by...
The problem lies in the SQL query construction in co-authors-plus/php/class-wp-cli.php
at line 238. The code currently is:
$post_types = implode( "','", $coauthors_plus->supported_post_types() );
$posts = $wpdb->get_col( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_author=%d AND post_type IN ({$post_types})", $user->ID ) );
This results in an SQL syntax error because the post_type values are not properly enclosed in single quotes in the IN clause.
Proposed Fix:
// add single quotes
$posts = $wpdb->get_col( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_author=%d AND post_type IN ('{$post_types}')", $user->ID ) );
I hope this issue can be resolved quickly.
Thank you!
]]>We’re on wordpress.com. Our logs are filling up really fast with this warning:
Message
PHP Warning: Attempt to read property “user_login” on null in /srv/htdocs/wp-content/plugins/co-authors-plus/template-tags.php on line 129
Timestamp
2024-06-14T01:31:07.000Z
Kind
plugins
Name
co-authors-plus
File
/srv/htdocs/wp-content/plugins/co-authors-plus/template-tags.php
Line
129
Around line 129 in template.tags.php:
// Fallback to user_login if we get something empty
if ( empty( $author_text ) ) {
$author_text = $i->current_author->user_login;
}
I’m not sure what the root cause is or what to do about it. To the end-user, everything looks normal, and performance isn’t bad either. I can’t replicate on our staging site either.
WP help recommended I turn it off and on again, but that did nothing. I’ll try turning on debug logging and seeing if I can get more info, but I’m a bit out of my depth. Any ideas would be appreciated!
Our PHP is running 8.2, and WP version is 6.5.4.
]]>Hello,
I recently noticed that the website.com/feed page shows the regular WordPress author data. It does not show the Co-Authors data at all.
I’m going to try and customize the RSS feed to show the Co-Authors author details. Just wondering if you have any plans to add this functionality to the plugin?
Thank you!
]]>I’m having a problem showing all the author’s published posts. We have over 200 authors and with the plugin active it shows a limited number of posts but when i deactive it shows all the posts associated with the author. If the plugin is active and I go to a post of the author’s that is not showing on the author’s page and I update the post it returns and is reconnected.
The further confusion is that I have a staging site that has a database that’s similar just older running the same plugins and it has no issues showing all connect posts.
I’m unclear of the issue and how to remedy it. Any suggestions? Thanks
]]>Hello,
Thank you for this plugin, which I use every week!
But on some of my (non-guest) author pages, all of the articles are no longer there, some are missing.
Thanks for your feedback !
]]>Hi
The issue I have is co-authors archive page is empty, not one post.
What should i do to fix this?
Thank you
]]>We’ve loved the plugin up until the recent update. When updating the plugin from 3.5.15 to 3.6.0 we noticed that on the Posts page that the Author column no longer shows up. The option to check the box to show it under Screen Options is gone as well. Any help here would be appreciated. We’ve currently rolled back to the earlier version (which DOES show the column with no issue). Thanks.
]]>Hi there,
Thanks for the plugin, which is very useful!
We’ve encountered a problem on the All Posts > Quick Edit view where autocomplete does not work for tag entry due to this error (please see below).
I hope you can fix it.
Thank you again!
Uncaught Reference Error: coAuthorsPlus_ajax_suggest_link is not defined
https://mydomain.com/wp-content/plugins/co-authors-plus/js/co-authors-plus.js?ver=3.6.0:356
jQuery 7
source https://mydomain.com/wp-admin/js/tags-suggest.min.js?ver=ba15912c7a920f48c59c8bb9289bdaf3:2
jQuery 13
co-authors-plus.js:356:30
After the latest update, only the first author of a post is allowed to edit and update a page or post.
2nd and subsequent authors will, upon hitting update, receive a message stating the update of the page is not allowed.
Any Ideas??
]]>wp 6.5.2. Post quickedit doesn’t work (pending) for activated plugin:
devtools console shows several entries as:
Uncaught ReferenceError: coAuthorsPlus_ajax_suggest_link is not defined
co-authors-plus.js:367:30
…/wp-content/plugins/co-authors-plus/js/co-authors-plus.js?ver=3.6.0:367
????
]]>wp 6.5.2. Post quickedit doesn’t work (pending) for activated plugin:
devtools console shows several entries as:
Uncaught ReferenceError: coAuthorsPlus_ajax_suggest_link is not defined
co-authors-plus.js:367:30
…/wp-content/plugins/co-authors-plus/js/co-authors-plus.js?ver=3.6.0:367
????
]]>hello, co-author plus can no longer works with Current version: 6.5.2 of WordPress, ajax search for names no longer works, please update it.
]]>Hello,
The plugin was working as expected for a while, but now I can only add administrators as co-authors.
Has anybody else encountered this issue?
Thanks
]]>Hello!
When two people or a guest author wrote on one article, the author field at the bottom of the article works wrong. https://umwelt-magazin.eu/einweg-mehrweg-kastner/ : Tim isn’t the author. A guest user is the author.
https://umwelt-magazin.eu/lighthouse-foundation/ : There are two authors, not only Tim. How can I solve this problem?
Best regards, PutmakerAG
I’m not getting authors or guest authors show up on a global search for posts. Pages corresponding to the author will show up on a global search but not posts corresponding to the author. My settings all appear to be correct for the query loop block, and I’ve had little success troubleshooting this.
]]>Hi there,
I’m unable to translate the author archive title “author” mention before the name of the author.
From what I can tell, the “Author: %s” item is called at line 1800 in co-author-plus.php
/* translators: Author display name. */
return sprintf( __( 'Author: %s', 'co-authors-plus' ), $author->display_name );
But even if the “Author: %s” is translated in the co-authors-plus .mo file, there is no effect. The title is always in english with the “Author :” before the name of the author.
What do I miss?
Thanks.
I use a Code Snippets shortcode to retrieve author info in a Divi Template for All Posts. It’s a Dutch (nl) site with WPML English (en) translations.
I test if Co-Authors exist. NL posts work just fine.
Problem is that on translated posts, an empty array is returned when using get_coauthors(). The functions coauthors_links and coauthors_posts_links only return the first coauthor.
Both language versions of the post are published, same coauthors apply.
Please help.
There’s an error upon trying to use jetpack social because of the jetpack_open_graph_tags
filter.
Coauthors Plus implemented this filter with two arguments $og_tags and $image_dimensions.
However, looking at the way the hook is implemented inside of jetpack social it does not have this second attribute thus the fatal error. I’ve corrected this in my own copy but this should be fixed on your end for others.
]]>I recently implemented co-authorship feature on our website and finally tried Co-Author Plus after failing to make my manual code work. For a quick background, I created a “co_writer” taxonomy whose terms basically reflect actual author names. While I’m able to echo author names in the byline of posts where they’re tagged, I’m not able to show these posts in their author archive since I lack the code to do so.
So I tried Co-Author Plus and voila! It works perfectly. When I tag an author as co-author using the Co-Author Plus field, the same post shows up in either author’s archive. But I have a problem. Some past posts all of a sudden show several authors as being co-authors to them, which is weird as I have not even touched those articles.
What could be causing this? I’ve deactivated CAP at the moment until someone might be able to shed light on the matter.
]]>After upgrading the PHP 8.2, I am seeing this warning across the WP Admin section:
[01-Feb-2024 15:44:07 UTC] PHP Warning: Object of class WP_Post could not be converted to int in /var/www/html/wp-content/plugins/co-authors-plus/template-tags.php on line 7
[01-Feb-2024 15:44:07 UTC] PHP Stack trace:
[01-Feb-2024 15:44:07 UTC] PHP 1. {main}() /var/www/html/wp-admin/index.php:0
[01-Feb-2024 15:44:07 UTC] PHP 2. wp_dashboard() /var/www/html/wp-admin/index.php:204
[01-Feb-2024 15:44:07 UTC] PHP 3. do_meta_boxes($screen = 'dashboard', $context = 'normal', $data_object = '') /var/www/html/wp-admin/includes/dashboard.php:271
[01-Feb-2024 15:44:07 UTC] PHP 4. Nelio_Content\Admin\Views\Overview_Dashboard_Widget\render_widget('', ['id' => 'nelio-content-dashboard-overview', 'title' => 'Nelio Content Overview', 'callback' => 'Nelio_Content\\Admin\\Views\\Overview_Dashboard_Widget\\render_widget', 'args' => []]) /var/www/html/wp-admin/includes/template.php:1456
[01-Feb-2024 15:44:07 UTC] PHP 5. Nelio_Content\Admin\Views\Overview_Dashboard_Widget\render_posts() /var/www/html/wp-content/plugins/nelio-content/admin/views/nelio-content-overview-widget.php:48
[01-Feb-2024 15:44:07 UTC] PHP 6. array_walk($array = [0 => class WP_Post { public $ID = 92896; public $post_author = '689'; public $post_date = '2023-11-07 14:39:27'; public $post_date_gmt = '2023-11-07 19:39:27'; public $post_content = '[gallery size="full" link="none" columns="1" ids="92657,92635,92612,92611,92610,92566"]'; public $post_title = 'Randy Slideshow Test Post'; public $post_excerpt = ''; public $post_status = 'publish'; public $comment_status = 'open'; public $ping_status = 'open'; public $post_password = ''; public $post_name = 'randy-slideshow-test-post'; public $to_ping = ''; public $pinged = ''; public $post_modified = '2023-11-07 15:26:21'; public $post_modified_gmt = '2023-11-07 20:26:21'; public $post_content_filtered = ''; public $post_parent = 0; public $guid = 'https://greenmarketreport.test/?p=92896'; public $menu_order = 0; public $post_type = 'post'; public $post_mime_type = ''; public $comment_count = '0'; public $filter = 'raw' }, 1 => class WP_Post { public $ID = 92882; public $post_author = '3'; public $post_date = '2023-04-04 11:36:22'; public $post_date_gmt = '0000-00-00 00:00:00'; public $post_content = '<span style="font-weight: 400;">While the embattled <a >High Times Holding Corp.</a> waits for its equally financially impaired lender <a >ExWorks to foreclose</a>, the cannabis media company is being sued for reneging on a domain name deal. Merlin Kauffman filed a lawsuit in Florida last week for a final default judgment against Trans High Corporation and High Times Holding Corp. </span>\n\n<span style="font'...; public $post_title = 'High Times Fails To Settlement In 420.com Deal'; public $post_excerpt = ''; public $post_status = 'draft'; public $comment_status = 'open'; public $ping_status = 'open'; public $post_password = ''; public $post_name = ''; public $to_ping = ''; public $pinged = ''; public $post_modified = '2023-04-04 11:36:22'; public $post_modified_gmt = '2023-04-04 15:36:22'; public $post_content_filtered = ''; public $post_parent = 0; public $guid = 'https://www.greenmarketreport.com/?p=92882'; public $menu_order = 0; public $post_type = 'post'; public $post_mime_type = ''; public $comment_count = '0'; public $filter = 'raw' }, 2 => class WP_Post { public $ID = 92861; public $post_author = '3'; public $post_date = '2023-04-04 10:35:24'; public $post_date_gmt = '2023-04-04 14:35:24'; public $post_content = 'MJ’s Market Inc., a small, closely held Massachusetts corporation established in May 2018, is accusing <a href=" https://www.jushico.com">Jushi Inc.</a> (OTC: JUSHF) of fighting its efforts to open a dispensary in Tyngsborough, which would be its second store in the state.\r\n\r\nAccording to<a > Law360</a>, the town decided to approve only two stores, and MJ\'s Market wants one of them. One store, Nature\''...; public $post_title = 'Jushi Accused of Fighting Competition in Masssachusetts'; public $post_excerpt = 'MJ\'s Market wants $60 million in damages.'; public $post_status = 'publish'; public $comment_status = 'open'; public $ping_status = 'open'; public $post_password = ''; public $post_name = 'jushi-accused-of-fighting-competition-in-masssachusetts'; public $to_ping = ''; public $pinged = ''; public $post_modified = '2023-04-04 11:21:13'; public $post_modified_gmt = '2023-04-04 15:21:13'; public $post_content_filtered = ''; public $post_parent = 0; public $guid = 'https://www.greenmarketreport.com/?p=92861'; public $menu_order = 0; public $post_type = 'post'; public $post_mime_type = ''; public $comment_count = '0'; public $filter = 'raw' }, 3 => class WP_Post { public $ID = 92853; public $post_author = '681'; public $post_date = '2023-04-04 10:21:12'; public $post_date_gmt = '2023-04-04 14:21:12'; public $post_content = '<div class="flex-1 overflow-hidden">\r\n<div class="react-scroll-to-bottom--css-ecfua-79elbk h-full dark:bg-gray-800">\r\n<div class="react-scroll-to-bottom--css-ecfua-1n7m0yu">\r\n<div class="flex flex-col items-center text-sm dark:bg-gray-800">\r\n<div class="group w-full text-gray-800 dark:text-gray-100 border-b border-black/10 dark:border-gray-900/50 bg-gray-50 dark:bg-[#444654]">\r\n<div class="text-base gap-4 md:gap-6 md:max-w-2xl lg:max-w-xl xl:max-w-3xl p-4 md:py-6 flex lg:px-0 m-auto">\r\n<div class="relative '...; public $post_title = 'Startup Hormonal Wellness Platform to Buy Ketamine Wellness Centers'; public $post_excerpt = 'KWC recently closed its clinics due to financial problems.'; public $post_status = 'publish'; public $comment_status = 'open'; public $ping_status = 'open'; public $post_password = ''; public $post_name = 'startup-hormonal-wellness-platform-to-buy-ketamine-wellness-centers'; public $to_ping = ''; public $pinged = ''; public $post_modified = '2023-04-04 10:21:12'; public $post_modified_gmt = '2023-04-04 14:21:12'; public $post_content_filtered = ''; public $post_parent = 0; public $guid = 'https://www.greenmarketreport.com/?p=92853'; public $menu_order = 0; public $post_type = 'post'; public $post_mime_type = ''; public $comment_count = '0'; public $filter = 'raw' }, 4 => class WP_Post { public $ID = 92856; public $post_author = '3'; public $post_date = '2023-04-04 09:17:58'; public $post_date_gmt = '2023-04-04 13:17:58'; public $post_content = 'After the market closed on Monday, <a href=" https://www.enveric.com/">Enveric Biosciences Inc.</a> (Nasdaq: ENVB) reported <a >financial results</a> for the fourth quarter and year ended Dec. 31, 2022.\r\n\r\nThe company reported a comprehensive net loss of $19.3 million for the year 2022, including $2.4 million in net non-cash expenses, with a basic and diluted loss per share of $13.00, as compared to a comprehensive net loss of $48.8 million with'...; public $post_title = 'Enveric Biosciences Needs More Money to Get Past 2023'; public $post_excerpt = 'The company is down to $14 million in working capital.'; public $post_status = 'publish'; public $comment_status = 'open'; public $ping_status = 'open'; public $post_password = ''; public $post_name = 'enveric-biosciences-says-it-need-more-money-to-get-past-2023'; public $to_ping = ''; public $pinged = ''; public $post_modified = '2023-04-04 11:11:25'; public $post_modified_gmt = '2023-04-04 15:11:25'; public $post_content_filtered = ''; public $post_parent = 0; public $guid = 'https://www.greenmarketreport.com/?p=92856'; public $menu_order = 0; public $post_type = 'post'; public $post_mime_type = ''; public $comment_count = '0'; public $filter = 'raw' }], $callback = 'Nelio_Content\\Admin\\Views\\Overview_Dashboard_Widget\\render_post') /var/www/html/wp-content/plugins/nelio-content/admin/views/nelio-content-overview-widget.php:81
[01-Feb-2024 15:44:07 UTC] PHP 7. Nelio_Content\Admin\Views\Overview_Dashboard_Widget\render_post($p = class WP_Post { public $ID = 92882; public $post_author = '3'; public $post_date = '2023-04-04 11:36:22'; public $post_date_gmt = '0000-00-00 00:00:00'; public $post_content = '<span style="font-weight: 400;">While the embattled <a >High Times Holding Corp.</a> waits for its equally financially impaired lender <a >ExWorks to foreclose</a>, the cannabis media company is being sued for reneging on a domain name deal. Merlin Kauffman filed a lawsuit in Florida last week for a final default judgment against Trans High Corporation and High Times Holding Corp. </span>\n\n<span style="font'...; public $post_title = 'High Times Fails To Settlement In 420.com Deal'; public $post_excerpt = ''; public $post_status = 'draft'; public $comment_status = 'open'; public $ping_status = 'open'; public $post_password = ''; public $post_name = ''; public $to_ping = ''; public $pinged = ''; public $post_modified = '2023-04-04 11:36:22'; public $post_modified_gmt = '2023-04-04 15:36:22'; public $post_content_filtered = ''; public $post_parent = 0; public $guid = 'https://www.greenmarketreport.com/?p=92882'; public $menu_order = 0; public $post_type = 'post'; public $post_mime_type = ''; public $comment_count = '0'; public $filter = 'raw' }, 1) /var/www/html/wp-content/plugins/nelio-content/admin/views/nelio-content-overview-widget.php:81
[01-Feb-2024 15:44:07 UTC] PHP 8. current_user_can($capability = 'edit_post', ...$args = variadic(class WP_Post { public $ID = 92882; public $post_author = '3'; public $post_date = '2023-04-04 11:36:22'; public $post_date_gmt = '0000-00-00 00:00:00'; public $post_content = '<span style=" font-weight: 400;">While the embattled <a >High Times Holding Corp.</a> waits for its equally financially impaired lender <a >ExWorks to foreclose</a>, the cannabis media company is being sued for reneging on a domain name deal. Merlin Kauffman filed a lawsuit in Florida last week for a final default judgment against Trans High Corporation and High Times Holding Corp. </span>\n\n<span style="font'...; public $post_title = 'High Times Fails To Settlement In 420.com Deal'; public $post_excerpt = ''; public $post_status = 'draft'; public $comment_status = 'open'; public $ping_status = 'open'; public $post_password = ''; public $post_name = ''; public $to_ping = ''; public $pinged = ''; public $post_modified = '2023-04-04 11:36:22'; public $post_modified_gmt = '2023-04-04 15:36:22'; public $post_content_filtered = ''; public $post_parent = 0; public $guid = 'https://www.greenmarketreport.com/?p=92882'; public $menu_order = 0; public $post_type = 'post'; public $post_mime_type = ''; public $comment_count = '0'; public $filter = 'raw' })) /var/www/html/wp-content/plugins/nelio-content/admin/views/nelio-content-overview-widget.php:192
[01-Feb-2024 15:44:07 UTC] PHP 9. user_can($user = class WP_User { public $data = class stdClass { public $ID = '689'; public $user_login = 'devrandy'; public $user_pass = '$P$BP/yBSqcg.WNsT6SkGqq11PXvpdNXe1'; public $user_nicename = 'devrandy'; public $user_email = '[email protected]'; public $user_url = ''; public $user_registered = '2023-04-12 13:51:03'; public $user_activation_key = ''; public $user_status = '0'; public $display_name = 'devrandy' }; public $ID = 689; public $caps = ['administrator' => TRUE]; public $cap_key = 'wp_capabilities'; public $roles = [0 => 'administrator']; public $allcaps = ['switch_themes' => TRUE, 'edit_themes' => TRUE, 'activate_plugins' => TRUE, 'edit_plugins' => TRUE, 'edit_users' => TRUE, 'edit_files' => TRUE, 'manage_options' => TRUE, 'moderate_comments' => TRUE, 'manage_categories' => TRUE, 'manage_links' => TRUE, 'upload_files' => TRUE, 'import' => TRUE, 'unfiltered_html' => TRUE, 'edit_posts' => TRUE, 'edit_others_posts' => TRUE, 'edit_published_posts' => TRUE, 'publish_posts' => TRUE, 'edit_pages' => TRUE, 'read' => TRUE, 'level_10' => TRUE, 'level_9' => TRUE, 'level_8' => TRUE, 'level_7' => TRUE, 'level_6' => TRUE, 'level_5' => TRUE, 'level_4' => TRUE, 'level_3' => TRUE, 'level_2' => TRUE, 'level_1' => TRUE, 'level_0' => TRUE, 'edit_others_pages' => TRUE, 'edit_published_pages' => TRUE, 'publish_pages' => TRUE, 'delete_pages' => TRUE, 'delete_others_pages' => TRUE, 'delete_published_pages' => TRUE, 'delete_posts' => TRUE, 'delete_others_posts' => TRUE, 'delete_published_posts' => TRUE, 'delete_private_posts' => TRUE, 'edit_private_posts' => TRUE, 'read_private_posts' => TRUE, 'delete_private_pages' => TRUE, 'edit_private_pages' => TRUE, 'read_private_pages' => TRUE, 'delete_users' => TRUE, 'create_users' => TRUE, 'unfiltered_upload' => TRUE, 'edit_dashboard' => TRUE, 'update_plugins' => TRUE, 'delete_plugins' => TRUE, 'install_plugins' => TRUE, 'update_themes' => TRUE, 'install_themes' => TRUE, 'update_core' => TRUE, 'list_users' => TRUE, 'remove_users' => TRUE, 'promote_users' => TRUE, 'edit_theme_options' => TRUE, 'delete_themes' => TRUE, 'export' => TRUE, 'manage_woocommerce' => TRUE, 'view_woocommerce_reports' => TRUE, 'edit_product' => TRUE, 'read_product' => TRUE, 'delete_product' => TRUE, 'edit_products' => TRUE, 'edit_others_products' => TRUE, 'publish_products' => TRUE, 'read_private_products' => TRUE, 'delete_products' => TRUE, 'delete_private_products' => TRUE, 'delete_published_products' => TRUE, 'delete_others_products' => TRUE, 'edit_private_products' => TRUE, 'edit_published_products' => TRUE, 'manage_product_terms' => TRUE, 'edit_product_terms' => TRUE, 'delete_product_terms' => TRUE, 'assign_product_terms' => TRUE, 'edit_shop_order' => TRUE, 'read_shop_order' => TRUE, 'delete_shop_order' => TRUE, 'edit_shop_orders' => TRUE, 'edit_others_shop_orders' => TRUE, 'publish_shop_orders' => TRUE, 'read_private_shop_orders' => TRUE, 'delete_shop_orders' => TRUE, 'delete_private_shop_orders' => TRUE, 'delete_published_shop_orders' => TRUE, 'delete_others_shop_orders' => TRUE, 'edit_private_shop_orders' => TRUE, 'edit_published_shop_orders' => TRUE, 'manage_shop_order_terms' => TRUE, 'edit_shop_order_terms' => TRUE, 'delete_shop_order_terms' => TRUE, 'assign_shop_order_terms' => TRUE, 'edit_shop_coupon' => TRUE, 'read_shop_coupon' => TRUE, 'delete_shop_coupon' => TRUE, 'edit_shop_coupons' => TRUE, 'edit_others_shop_coupons' => TRUE, 'publish_shop_coupons' => TRUE, 'read_private_shop_coupons' => TRUE, 'delete_shop_coupons' => TRUE, 'delete_private_shop_coupons' => TRUE, 'delete_published_shop_coupons' => TRUE, 'delete_others_shop_coupons' => TRUE, 'edit_private_shop_coupons' => TRUE, 'edit_published_shop_coupons' => TRUE, 'manage_shop_coupon_terms' => TRUE, 'edit_shop_coupon_terms' => TRUE, 'delete_shop_coupon_terms' => TRUE, 'assign_shop_coupon_terms' => TRUE, 'edit_shop_webhook' => TRUE, 'read_shop_webhook' => TRUE, 'delete_shop_webhook' => TRUE, 'edit_shop_webhooks' => TRUE, 'edit_others_shop_webhooks' => TRUE, 'publish_shop_webhooks' => TRUE, 'read_private_shop_webhooks' => TRUE, 'delete_shop_webhooks' => TRUE, 'delete_private_shop_webhooks' => TRUE, 'delete_published_shop_webhooks' => TRUE, 'delete_others_shop_webhooks' => TRUE, 'edit_private_shop_webhooks' => TRUE, 'edit_published_shop_webhooks' => TRUE, 'manage_shop_webhook_terms' => TRUE, ...]; public $filter = NULL; private $site_id = 1 }, $capability = 'edit_post', ...$args = variadic(class WP_Post { public $ID = 92882; public $post_author = '3'; public $post_date = '2023-04-04 11:36:22'; public $post_date_gmt = '0000-00-00 00:00:00'; public $post_content = '<span style=" font-weight: 400;">While the embattled <a >High Times Holding Corp.</a> waits for its equally financially impaired lender <a >ExWorks to foreclose</a>, the cannabis media company is being sued for reneging on a domain name deal. Merlin Kauffman filed a lawsuit in Florida last week for a final default judgment against Trans High Corporation and High Times Holding Corp. </span>\n\n<span style="font'...; public $post_title = 'High Times Fails To Settlement In 420.com Deal'; public $post_excerpt = ''; public $post_status = 'draft'; public $comment_status = 'open'; public $ping_status = 'open'; public $post_password = ''; public $post_name = ''; public $to_ping = ''; public $pinged = ''; public $post_modified = '2023-04-04 11:36:22'; public $post_modified_gmt = '2023-04-04 15:36:22'; public $post_content_filtered = ''; public $post_parent = 0; public $guid = 'https://www.greenmarketreport.com/?p=92882'; public $menu_order = 0; public $post_type = 'post'; public $post_mime_type = ''; public $comment_count = '0'; public $filter = 'raw' })) /var/www/html/wp-includes/capabilities.php:877
[01-Feb-2024 15:44:07 UTC] PHP 10. WP_User->has_cap($cap = 'edit_post', ...$args = variadic(class WP_Post { public $ID = 92882; public $post_author = '3'; public $post_date = '2023-04-04 11:36:22'; public $post_date_gmt = '0000-00-00 00:00:00'; public $post_content = '<span style=" font-weight: 400;">While the embattled <a >High Times Holding Corp.</a> waits for its equally financially impaired lender <a >ExWorks to foreclose</a>, the cannabis media company is being sued for reneging on a domain name deal. Merlin Kauffman filed a lawsuit in Florida last week for a final default judgment against Trans High Corporation and High Times Holding Corp. </span>\n\n<span style="font'...; public $post_title = 'High Times Fails To Settlement In 420.com Deal'; public $post_excerpt = ''; public $post_status = 'draft'; public $comment_status = 'open'; public $ping_status = 'open'; public $post_password = ''; public $post_name = ''; public $to_ping = ''; public $pinged = ''; public $post_modified = '2023-04-04 11:36:22'; public $post_modified_gmt = '2023-04-04 15:36:22'; public $post_content_filtered = ''; public $post_parent = 0; public $guid = 'https://www.greenmarketreport.com/?p=92882'; public $menu_order = 0; public $post_type = 'post'; public $post_mime_type = ''; public $comment_count = '0'; public $filter = 'raw' })) /var/www/html/wp-includes/capabilities.php:985
[01-Feb-2024 15:44:07 UTC] PHP 11. apply_filters($hook_name = 'user_has_cap', $value = ['switch_themes' => TRUE, 'edit_themes' => TRUE, 'activate_plugins' => TRUE, 'edit_plugins' => TRUE, 'edit_users' => TRUE, 'edit_files' => TRUE, 'manage_options' => TRUE, 'moderate_comments' => TRUE, 'manage_categories' => TRUE, 'manage_links' => TRUE, 'upload_files' => TRUE, 'import' => TRUE, 'unfiltered_html' => TRUE, 'edit_posts' => TRUE, 'edit_others_posts' => TRUE, 'edit_published_posts' => TRUE, 'publish_posts' => TRUE, 'edit_pages' => TRUE, 'read' => TRUE, 'level_10' => TRUE, 'level_9' => TRUE, 'level_8' => TRUE, 'level_7' => TRUE, 'level_6' => TRUE, 'level_5' => TRUE, 'level_4' => TRUE, 'level_3' => TRUE, 'level_2' => TRUE, 'level_1' => TRUE, 'level_0' => TRUE, 'edit_others_pages' => TRUE, 'edit_published_pages' => TRUE, 'publish_pages' => TRUE, 'delete_pages' => TRUE, 'delete_others_pages' => TRUE, 'delete_published_pages' => TRUE, 'delete_posts' => TRUE, 'delete_others_posts' => TRUE, 'delete_published_posts' => TRUE, 'delete_private_posts' => TRUE, 'edit_private_posts' => TRUE, 'read_private_posts' => TRUE, 'delete_private_pages' => TRUE, 'edit_private_pages' => TRUE, 'read_private_pages' => TRUE, 'delete_users' => TRUE, 'create_users' => TRUE, 'unfiltered_upload' => TRUE, 'edit_dashboard' => TRUE, 'update_plugins' => TRUE, 'delete_plugins' => TRUE, 'install_plugins' => TRUE, 'update_themes' => TRUE, 'install_themes' => TRUE, 'update_core' => TRUE, 'list_users' => TRUE, 'remove_users' => TRUE, 'promote_users' => TRUE, 'edit_theme_options' => TRUE, 'delete_themes' => TRUE, 'export' => TRUE, 'manage_woocommerce' => TRUE, 'view_woocommerce_reports' => TRUE, 'edit_product' => TRUE, 'read_product' => TRUE, 'delete_product' => TRUE, 'edit_products' => TRUE, 'edit_others_products' => TRUE, 'publish_products' => TRUE, 'read_private_products' => TRUE, 'delete_products' => TRUE, 'delete_private_products' => TRUE, 'delete_published_products' => TRUE, 'delete_others_products' => TRUE, 'edit_private_products' => TRUE, 'edit_published_products' => TRUE, 'manage_product_terms' => TRUE, 'edit_product_terms' => TRUE, 'delete_product_terms' => TRUE, 'assign_product_terms' => TRUE, 'edit_shop_order' => TRUE, 'read_shop_order' => TRUE, 'delete_shop_order' => TRUE, 'edit_shop_orders' => TRUE, 'edit_others_shop_orders' => TRUE, 'publish_shop_orders' => TRUE, 'read_private_shop_orders' => TRUE, 'delete_shop_orders' => TRUE, 'delete_private_shop_orders' => TRUE, 'delete_published_shop_orders' => TRUE, 'delete_others_shop_orders' => TRUE, 'edit_private_shop_orders' => TRUE, 'edit_published_shop_orders' => TRUE, 'manage_shop_order_terms' => TRUE, 'edit_shop_order_terms' => TRUE, 'delete_shop_order_terms' => TRUE, 'assign_shop_order_terms' => TRUE, 'edit_shop_coupon' => TRUE, 'read_shop_coupon' => TRUE, 'delete_shop_coupon' => TRUE, 'edit_shop_coupons' => TRUE, 'edit_others_shop_coupons' => TRUE, 'publish_shop_coupons' => TRUE, 'read_private_shop_coupons' => TRUE, 'delete_shop_coupons' => TRUE, 'delete_private_shop_coupons' => TRUE, 'delete_published_shop_coupons' => TRUE, 'delete_others_shop_coupons' => TRUE, 'edit_private_shop_coupons' => TRUE, 'edit_published_shop_coupons' => TRUE, 'manage_shop_coupon_terms' => TRUE, 'edit_shop_coupon_terms' => TRUE, 'delete_shop_coupon_terms' => TRUE, 'assign_shop_coupon_terms' => TRUE, 'edit_shop_webhook' => TRUE, 'read_shop_webhook' => TRUE, 'delete_shop_webhook' => TRUE, 'edit_shop_webhooks' => TRUE, 'edit_others_shop_webhooks' => TRUE, 'publish_shop_webhooks' => TRUE, 'read_private_shop_webhooks' => TRUE, 'delete_shop_webhooks' => TRUE, 'delete_private_shop_webhooks' => TRUE, 'delete_published_shop_webhooks' => TRUE, 'delete_others_shop_webhooks' => TRUE, 'edit_private_shop_webhooks' => TRUE, 'edit_published_shop_webhooks' => TRUE, 'manage_shop_webhook_terms' => TRUE, ...], ...$args = variadic([0 => 'edit_others_posts'], [0 => 'edit_post', 1 => 689, 2 => class WP_Post { public $ID = 92882; public $post_author = '3'; public $post_date = '2023-04-04 11:36:22'; public $post_date_gmt = '0000-00-00 00:00:00'; public $post_content = '<span style=" font-weight: 400;">While the embattled <a >High Times Holding Corp.</a> waits for its equally financially impaired lender <a >ExWorks to foreclose</a>, the cannabis media company is being sued for reneging on a domain name deal. Merlin Kauffman filed a lawsuit in Florida last week for a final default judgment against Trans High Corporation and High Times Holding Corp. </span>\n\n<span style="font'...; public $post_title = 'High Times Fails To Settlement In 420.com Deal'; public $post_excerpt = ''; public $post_status = 'draft'; public $comment_status = 'open'; public $ping_status = 'open'; public $post_password = ''; public $post_name = ''; public $to_ping = ''; public $pinged = ''; public $post_modified = '2023-04-04 11:36:22'; public $post_modified_gmt = '2023-04-04 15:36:22'; public $post_content_filtered = ''; public $post_parent = 0; public $guid = 'https://www.greenmarketreport.com/?p=92882'; public $menu_order = 0; public $post_type = 'post'; public $post_mime_type = ''; public $comment_count = '0'; public $filter = 'raw' }], class WP_User { public $data = class stdClass { public $ID = '689'; public $user_login = 'devrandy'; public $user_pass = '$P$BP/yBSqcg.WNsT6SkGqq11PXvpdNXe1'; public $user_nicename = 'devrandy'; public $user_email = '[email protected]'; public $user_url = ''; public $user_registered = '2023-04-12 13:51:03'; public $user_activation_key = ''; public $user_status = '0'; public $display_name = 'devrandy' }; public $ID = 689; public $caps = ['administrator' => TRUE]; public $cap_key = 'wp_capabilities'; public $roles = [0 => 'administrator']; public $allcaps = ['switch_themes' => TRUE, 'edit_themes' => TRUE, 'activate_plugins' => TRUE, 'edit_plugins' => TRUE, 'edit_users' => TRUE, 'edit_files' => TRUE, 'manage_options' => TRUE, 'moderate_comments' => TRUE, 'manage_categories' => TRUE, 'manage_links' => TRUE, 'upload_files' => TRUE, 'import' => TRUE, 'unfiltered_html' => TRUE, 'edit_posts' => TRUE, 'edit_others_posts' => TRUE, 'edit_published_posts' => TRUE, 'publish_posts' => TRUE, 'edit_pages' => TRUE, 'read' => TRUE, 'level_10' => TRUE, 'level_9' => TRUE, 'level_8' => TRUE, 'level_7' => TRUE, 'level_6' => TRUE, 'level_5' => TRUE, 'level_4' => TRUE, 'level_3' => TRUE, 'level_2' => TRUE, 'level_1' => TRUE, 'level_0' => TRUE, 'edit_others_pages' => TRUE, 'edit_published_pages' => TRUE, 'publish_pages' => TRUE, 'delete_pages' => TRUE, 'delete_others_pages' => TRUE, 'delete_published_pages' => TRUE, 'delete_posts' => TRUE, 'delete_others_posts' => TRUE, 'delete_published_posts' => TRUE, 'delete_private_posts' => TRUE, 'edit_private_posts' => TRUE, 'read_private_posts' => TRUE, 'delete_private_pages' => TRUE, 'edit_private_pages' => TRUE, 'read_private_pages' => TRUE, 'delete_users' => TRUE, 'create_users' => TRUE, 'unfiltered_upload' => TRUE, 'edit_dashboard' => TRUE, 'update_plugins' => TRUE, 'delete_plugins' => TRUE, 'install_plugins' => TRUE, 'update_themes' => TRUE, 'install_themes' => TRUE, 'update_core' => TRUE, 'list_users' => TRUE, 'remove_users' => TRUE, 'promote_users' => TRUE, 'edit_theme_options' => TRUE, 'delete_themes' => TRUE, 'export' => TRUE, 'manage_woocommerce' => TRUE, 'view_woocommerce_reports' => TRUE, 'edit_product' => TRUE, 'read_product' => TRUE, 'delete_product' => TRUE, 'edit_products' => TRUE, 'edit_others_products' => TRUE, 'publish_products' => TRUE, 'read_private_products' => TRUE, 'delete_products' => TRUE, 'delete_private_products' => TRUE, 'delete_published_products' => TRUE, 'delete_others_products' => TRUE, 'edit_private_products' => TRUE, 'edit_published_products' => TRUE, 'manage_product_terms' => TRUE, 'edit_product_terms' => TRUE, 'delete_product_terms' => TRUE, 'assign_product_terms' => TRUE, 'edit_shop_order' => TRUE, 'read_shop_order' => TRUE, 'delete_shop_order' => TRUE, 'edit_shop_orders' => TRUE, 'edit_others_shop_orders' => TRUE, 'publish_shop_orders' => TRUE, 'read_private_shop_orders' => TRUE, 'delete_shop_orders' => TRUE, 'delete_private_shop_orders' => TRUE, 'delete_published_shop_orders' => TRUE, 'delete_others_shop_orders' => TRUE, 'edit_private_shop_orders' => TRUE, 'edit_published_shop_orders' => TRUE, 'manage_shop_order_terms' => TRUE, 'edit_shop_order_terms' => TRUE, 'delete_shop_order_terms' => TRUE, 'assign_shop_order_terms' => TRUE, 'edit_shop_coupon' => TRUE, 'read_shop_coupon' => TRUE, 'delete_shop_coupon' => TRUE, 'edit_shop_coupons' => TRUE, 'edit_others_shop_coupons' => TRUE, 'publish_shop_coupons' => TRUE, 'read_private_shop_coupons' => TRUE, 'delete_shop_coupons' => TRUE, 'delete_private_shop_coupons' => TRUE, 'delete_published_shop_coupons' => TRUE, 'delete_others_shop_coupons' => TRUE, 'edit_private_shop_coupons' => TRUE, 'edit_published_shop_coupons' => TRUE, 'manage_shop_coupon_terms' => TRUE, 'edit_shop_coupon_terms' => TRUE, 'delete_shop_coupon_terms' => TRUE, 'assign_shop_coupon_terms' => TRUE, 'edit_shop_webhook' => TRUE, 'read_shop_webhook' => TRUE, 'delete_shop_webhook' => TRUE, 'edit_shop_webhooks' => TRUE, 'edit_others_shop_webhooks' => TRUE, 'publish_shop_webhooks' => TRUE, 'read_private_shop_webhooks' => TRUE, 'delete_shop_webhooks' => TRUE, 'delete_private_shop_webhooks' => TRUE, 'delete_published_shop_webhooks' => TRUE, 'delete_others_shop_webhooks' => TRUE, 'edit_private_shop_webhooks' => TRUE, 'edit_published_shop_webhooks' => TRUE, 'manage_shop_webhook_terms' => TRUE, ...]; public $filter = NULL; private $site_id = 1 })) /var/www/html/wp-includes/class-wp-user.php:808
[01-Feb-2024 15:44:07 UTC] PHP 12. WP_Hook->apply_filters($value = ['switch_themes' => TRUE, 'edit_themes' => TRUE, 'activate_plugins' => TRUE, 'edit_plugins' => TRUE, 'edit_users' => TRUE, 'edit_files' => TRUE, 'manage_options' => TRUE, 'moderate_comments' => TRUE, 'manage_categories' => TRUE, 'manage_links' => TRUE, 'upload_files' => TRUE, 'import' => TRUE, 'unfiltered_html' => TRUE, 'edit_posts' => TRUE, 'edit_others_posts' => TRUE, 'edit_published_posts' => TRUE, 'publish_posts' => TRUE, 'edit_pages' => TRUE, 'read' => TRUE, 'level_10' => TRUE, 'level_9' => TRUE, 'level_8' => TRUE, 'level_7' => TRUE, 'level_6' => TRUE, 'level_5' => TRUE, 'level_4' => TRUE, 'level_3' => TRUE, 'level_2' => TRUE, 'level_1' => TRUE, 'level_0' => TRUE, 'edit_others_pages' => TRUE, 'edit_published_pages' => TRUE, 'publish_pages' => TRUE, 'delete_pages' => TRUE, 'delete_others_pages' => TRUE, 'delete_published_pages' => TRUE, 'delete_posts' => TRUE, 'delete_others_posts' => TRUE, 'delete_published_posts' => TRUE, 'delete_private_posts' => TRUE, 'edit_private_posts' => TRUE, 'read_private_posts' => TRUE, 'delete_private_pages' => TRUE, 'edit_private_pages' => TRUE, 'read_private_pages' => TRUE, 'delete_users' => TRUE, 'create_users' => TRUE, 'unfiltered_upload' => TRUE, 'edit_dashboard' => TRUE, 'update_plugins' => TRUE, 'delete_plugins' => TRUE, 'install_plugins' => TRUE, 'update_themes' => TRUE, 'install_themes' => TRUE, 'update_core' => TRUE, 'list_users' => TRUE, 'remove_users' => TRUE, 'promote_users' => TRUE, 'edit_theme_options' => TRUE, 'delete_themes' => TRUE, 'export' => TRUE, 'manage_woocommerce' => TRUE, 'view_woocommerce_reports' => TRUE, 'edit_product' => TRUE, 'read_product' => TRUE, 'delete_product' => TRUE, 'edit_products' => TRUE, 'edit_others_products' => TRUE, 'publish_products' => TRUE, 'read_private_products' => TRUE, 'delete_products' => TRUE, 'delete_private_products' => TRUE, 'delete_published_products' => TRUE, 'delete_others_products' => TRUE, 'edit_private_products' => TRUE, 'edit_published_products' => TRUE, 'manage_product_terms' => TRUE, 'edit_product_terms' => TRUE, 'delete_product_terms' => TRUE, 'assign_product_terms' => TRUE, 'edit_shop_order' => TRUE, 'read_shop_order' => TRUE, 'delete_shop_order' => TRUE, 'edit_shop_orders' => TRUE, 'edit_others_shop_orders' => TRUE, 'publish_shop_orders' => TRUE, 'read_private_shop_orders' => TRUE, 'delete_shop_orders' => TRUE, 'delete_private_shop_orders' => TRUE, 'delete_published_shop_orders' => TRUE, 'delete_others_shop_orders' => TRUE, 'edit_private_shop_orders' => TRUE, 'edit_published_shop_orders' => TRUE, 'manage_shop_order_terms' => TRUE, 'edit_shop_order_terms' => TRUE, 'delete_shop_order_terms' => TRUE, 'assign_shop_order_terms' => TRUE, 'edit_shop_coupon' => TRUE, 'read_shop_coupon' => TRUE, 'delete_shop_coupon' => TRUE, 'edit_shop_coupons' => TRUE, 'edit_others_shop_coupons' => TRUE, 'publish_shop_coupons' => TRUE, 'read_private_shop_coupons' => TRUE, 'delete_shop_coupons' => TRUE, 'delete_private_shop_coupons' => TRUE, 'delete_published_shop_coupons' => TRUE, 'delete_others_shop_coupons' => TRUE, 'edit_private_shop_coupons' => TRUE, 'edit_published_shop_coupons' => TRUE, 'manage_shop_coupon_terms' => TRUE, 'edit_shop_coupon_terms' => TRUE, 'delete_shop_coupon_terms' => TRUE, 'assign_shop_coupon_terms' => TRUE, 'edit_shop_webhook' => TRUE, 'read_shop_webhook' => TRUE, 'delete_shop_webhook' => TRUE, 'edit_shop_webhooks' => TRUE, 'edit_others_shop_webhooks' => TRUE, 'publish_shop_webhooks' => TRUE, 'read_private_shop_webhooks' => TRUE, 'delete_shop_webhooks' => TRUE, 'delete_private_shop_webhooks' => TRUE, 'delete_published_shop_webhooks' => TRUE, 'delete_others_shop_webhooks' => TRUE, 'edit_private_shop_webhooks' => TRUE, 'edit_published_shop_webhooks' => TRUE, 'manage_shop_webhook_terms' => TRUE, ...], $args = [0 => ['switch_themes' => TRUE, 'edit_themes' => TRUE, 'activate_plugins' => TRUE, 'edit_plugins' => TRUE, 'edit_users' => TRUE, 'edit_files' => TRUE, 'manage_options' => TRUE, 'moderate_comments' => TRUE, 'manage_categories' => TRUE, 'manage_links' => TRUE, 'upload_files' => TRUE, 'import' => TRUE, 'unfiltered_html' => TRUE, 'edit_posts' => TRUE, 'edit_others_posts' => TRUE, 'edit_published_posts' => TRUE, 'publish_posts' => TRUE, 'edit_pages' => TRUE, 'read' => TRUE, 'level_10' => TRUE, 'level_9' => TRUE, 'level_8' => TRUE, 'level_7' => TRUE, 'level_6' => TRUE, 'level_5' => TRUE, 'level_4' => TRUE, 'level_3' => TRUE, 'level_2' => TRUE, 'level_1' => TRUE, 'level_0' => TRUE, 'edit_others_pages' => TRUE, 'edit_published_pages' => TRUE, 'publish_pages' => TRUE, 'delete_pages' => TRUE, 'delete_others_pages' => TRUE, 'delete_published_pages' => TRUE, 'delete_posts' => TRUE, 'delete_others_posts' => TRUE, 'delete_published_posts' => TRUE, 'delete_private_posts' => TRUE, 'edit_private_posts' => TRUE, 'read_private_posts' => TRUE, 'delete_private_pages' => TRUE, 'edit_private_pages' => TRUE, 'read_private_pages' => TRUE, 'delete_users' => TRUE, 'create_users' => TRUE, 'unfiltered_upload' => TRUE, 'edit_dashboard' => TRUE, 'update_plugins' => TRUE, 'delete_plugins' => TRUE, 'install_plugins' => TRUE, 'update_themes' => TRUE, 'install_themes' => TRUE, 'update_core' => TRUE, 'list_users' => TRUE, 'remove_users' => TRUE, 'promote_users' => TRUE, 'edit_theme_options' => TRUE, 'delete_themes' => TRUE, 'export' => TRUE, 'manage_woocommerce' => TRUE, 'view_woocommerce_reports' => TRUE, 'edit_product' => TRUE, 'read_product' => TRUE, 'delete_product' => TRUE, 'edit_products' => TRUE, 'edit_others_products' => TRUE, 'publish_products' => TRUE, 'read_private_products' => TRUE, 'delete_products' => TRUE, 'delete_private_products' => TRUE, 'delete_published_products' => TRUE, 'delete_others_products' => TRUE, 'edit_private_products' => TRUE, 'edit_published_products' => TRUE, 'manage_product_terms' => TRUE, 'edit_product_terms' => TRUE, 'delete_product_terms' => TRUE, 'assign_product_terms' => TRUE, 'edit_shop_order' => TRUE, 'read_shop_order' => TRUE, 'delete_shop_order' => TRUE, 'edit_shop_orders' => TRUE, 'edit_others_shop_orders' => TRUE, 'publish_shop_orders' => TRUE, 'read_private_shop_orders' => TRUE, 'delete_shop_orders' => TRUE, 'delete_private_shop_orders' => TRUE, 'delete_published_shop_orders' => TRUE, 'delete_others_shop_orders' => TRUE, 'edit_private_shop_orders' => TRUE, 'edit_published_shop_orders' => TRUE, 'manage_shop_order_terms' => TRUE, 'edit_shop_order_terms' => TRUE, 'delete_shop_order_terms' => TRUE, 'assign_shop_order_terms' => TRUE, 'edit_shop_coupon' => TRUE, 'read_shop_coupon' => TRUE, 'delete_shop_coupon' => TRUE, 'edit_shop_coupons' => TRUE, 'edit_others_shop_coupons' => TRUE, 'publish_shop_coupons' => TRUE, 'read_private_shop_coupons' => TRUE, 'delete_shop_coupons' => TRUE, 'delete_private_shop_coupons' => TRUE, 'delete_published_shop_coupons' => TRUE, 'delete_others_shop_coupons' => TRUE, 'edit_private_shop_coupons' => TRUE, 'edit_published_shop_coupons' => TRUE, 'manage_shop_coupon_terms' => TRUE, 'edit_shop_coupon_terms' => TRUE, 'delete_shop_coupon_terms' => TRUE, 'assign_shop_coupon_terms' => TRUE, 'edit_shop_webhook' => TRUE, 'read_shop_webhook' => TRUE, 'delete_shop_webhook' => TRUE, 'edit_shop_webhooks' => TRUE, 'edit_others_shop_webhooks' => TRUE, 'publish_shop_webhooks' => TRUE, 'read_private_shop_webhooks' => TRUE, 'delete_shop_webhooks' => TRUE, 'delete_private_shop_webhooks' => TRUE, 'delete_published_shop_webhooks' => TRUE, 'delete_others_shop_webhooks' => TRUE, 'edit_private_shop_webhooks' => TRUE, 'edit_published_shop_webhooks' => TRUE, 'manage_shop_webhook_terms' => TRUE, ...], 1 => [0 => 'edit_others_posts'], 2 => [0 => 'edit_post', 1 => 689, 2 => class WP_Post { ... }], 3 => class WP_User { public $data = class stdClass { ... }; public $ID = 689; public $caps = [...]; public $cap_key = 'wp_capabilities'; public $roles = [...]; public $allcaps = [...]; public $filter = NULL; private $site_id = 1 }]) /var/www/html/wp-includes/plugin.php:205
[01-Feb-2024 15:44:07 UTC] PHP 13. CoAuthors_Plus->filter_user_has_cap($allcaps = ['switch_themes' => TRUE, 'edit_themes' => TRUE, 'activate_plugins' => TRUE, 'edit_plugins' => TRUE, 'edit_users' => TRUE, 'edit_files' => TRUE, 'manage_options' => TRUE, 'moderate_comments' => TRUE, 'manage_categories' => TRUE, 'manage_links' => TRUE, 'upload_files' => TRUE, 'import' => TRUE, 'unfiltered_html' => TRUE, 'edit_posts' => TRUE, 'edit_others_posts' => TRUE, 'edit_published_posts' => TRUE, 'publish_posts' => TRUE, 'edit_pages' => TRUE, 'read' => TRUE, 'level_10' => TRUE, 'level_9' => TRUE, 'level_8' => TRUE, 'level_7' => TRUE, 'level_6' => TRUE, 'level_5' => TRUE, 'level_4' => TRUE, 'level_3' => TRUE, 'level_2' => TRUE, 'level_1' => TRUE, 'level_0' => TRUE, 'edit_others_pages' => TRUE, 'edit_published_pages' => TRUE, 'publish_pages' => TRUE, 'delete_pages' => TRUE, 'delete_others_pages' => TRUE, 'delete_published_pages' => TRUE, 'delete_posts' => TRUE, 'delete_others_posts' => TRUE, 'delete_published_posts' => TRUE, 'delete_private_posts' => TRUE, 'edit_private_posts' => TRUE, 'read_private_posts' => TRUE, 'delete_private_pages' => TRUE, 'edit_private_pages' => TRUE, 'read_private_pages' => TRUE, 'delete_users' => TRUE, 'create_users' => TRUE, 'unfiltered_upload' => TRUE, 'edit_dashboard' => TRUE, 'update_plugins' => TRUE, 'delete_plugins' => TRUE, 'install_plugins' => TRUE, 'update_themes' => TRUE, 'install_themes' => TRUE, 'update_core' => TRUE, 'list_users' => TRUE, 'remove_users' => TRUE, 'promote_users' => TRUE, 'edit_theme_options' => TRUE, 'delete_themes' => TRUE, 'export' => TRUE, 'manage_woocommerce' => TRUE, 'view_woocommerce_reports' => TRUE, 'edit_product' => TRUE, 'read_product' => TRUE, 'delete_product' => TRUE, 'edit_products' => TRUE, 'edit_others_products' => TRUE, 'publish_products' => TRUE, 'read_private_products' => TRUE, 'delete_products' => TRUE, 'delete_private_products' => TRUE, 'delete_published_products' => TRUE, 'delete_others_products' => TRUE, 'edit_private_products' => TRUE, 'edit_published_products' => TRUE, 'manage_product_terms' => TRUE, 'edit_product_terms' => TRUE, 'delete_product_terms' => TRUE, 'assign_product_terms' => TRUE, 'edit_shop_order' => TRUE, 'read_shop_order' => TRUE, 'delete_shop_order' => TRUE, 'edit_shop_orders' => TRUE, 'edit_others_shop_orders' => TRUE, 'publish_shop_orders' => TRUE, 'read_private_shop_orders' => TRUE, 'delete_shop_orders' => TRUE, 'delete_private_shop_orders' => TRUE, 'delete_published_shop_orders' => TRUE, 'delete_others_shop_orders' => TRUE, 'edit_private_shop_orders' => TRUE, 'edit_published_shop_orders' => TRUE, 'manage_shop_order_terms' => TRUE, 'edit_shop_order_terms' => TRUE, 'delete_shop_order_terms' => TRUE, 'assign_shop_order_terms' => TRUE, 'edit_shop_coupon' => TRUE, 'read_shop_coupon' => TRUE, 'delete_shop_coupon' => TRUE, 'edit_shop_coupons' => TRUE, 'edit_others_shop_coupons' => TRUE, 'publish_shop_coupons' => TRUE, 'read_private_shop_coupons' => TRUE, 'delete_shop_coupons' => TRUE, 'delete_private_shop_coupons' => TRUE, 'delete_published_shop_coupons' => TRUE, 'delete_others_shop_coupons' => TRUE, 'edit_private_shop_coupons' => TRUE, 'edit_published_shop_coupons' => TRUE, 'manage_shop_coupon_terms' => TRUE, 'edit_shop_coupon_terms' => TRUE, 'delete_shop_coupon_terms' => TRUE, 'assign_shop_coupon_terms' => TRUE, 'edit_shop_webhook' => TRUE, 'read_shop_webhook' => TRUE, 'delete_shop_webhook' => TRUE, 'edit_shop_webhooks' => TRUE, 'edit_others_shop_webhooks' => TRUE, 'publish_shop_webhooks' => TRUE, 'read_private_shop_webhooks' => TRUE, 'delete_shop_webhooks' => TRUE, 'delete_private_shop_webhooks' => TRUE, 'delete_published_shop_webhooks' => TRUE, 'delete_others_shop_webhooks' => TRUE, 'edit_private_shop_webhooks' => TRUE, 'edit_published_shop_webhooks' => TRUE, 'manage_shop_webhook_terms' => TRUE, ...], $caps = [0 => 'edit_others_posts'], $args = [0 => 'edit_post', 1 => 689, 2 => class WP_Post { public $ID = 92882; public $post_author = '3'; public $post_date = '2023-04-04 11:36:22'; public $post_date_gmt = '0000-00-00 00:00:00'; public $post_content = '<span style=" font-weight: 400;">While the embattled <a >High Times Holding Corp.</a> waits for its equally financially impaired lender <a >ExWorks to foreclose</a>, the cannabis media company is being sued for reneging on a domain name deal. Merlin Kauffman filed a lawsuit in Florida last week for a final default judgment against Trans High Corporation and High Times Holding Corp. </span>\n\n<span style="font'...; public $post_title = 'High Times Fails To Settlement In 420.com Deal'; public $post_excerpt = ''; public $post_status = 'draft'; public $comment_status = 'open'; public $ping_status = 'open'; public $post_password = ''; public $post_name = ''; public $to_ping = ''; public $pinged = ''; public $post_modified = '2023-04-04 11:36:22'; public $post_modified_gmt = '2023-04-04 15:36:22'; public $post_content_filtered = ''; public $post_parent = 0; public $guid = 'https://www.greenmarketreport.com/?p=92882'; public $menu_order = 0; public $post_type = 'post'; public $post_mime_type = ''; public $comment_count = '0'; public $filter = 'raw' }]) /var/www/html/wp-includes/class-wp-hook.php:326
[01-Feb-2024 15:44:07 UTC] PHP 14. is_coauthor_for_post($user = 689, $post_id = class WP_Post { public $ID = 92882; public $post_author = '3'; public $post_date = '2023-04-04 11:36:22'; public $post_date_gmt = '0000-00-00 00:00:00'; public $post_content = '<span style=" font-weight: 400;">While the embattled <a >High Times Holding Corp.</a> waits for its equally financially impaired lender <a >ExWorks to foreclose</a>, the cannabis media company is being sued for reneging on a domain name deal. Merlin Kauffman filed a lawsuit in Florida last week for a final default judgment against Trans High Corporation and High Times Holding Corp. </span>\n\n<span style="font'...; public $post_title = 'High Times Fails To Settlement In 420.com Deal'; public $post_excerpt = ''; public $post_status = 'draft'; public $comment_status = 'open'; public $ping_status = 'open'; public $post_password = ''; public $post_name = ''; public $to_ping = ''; public $pinged = ''; public $post_modified = '2023-04-04 11:36:22'; public $post_modified_gmt = '2023-04-04 15:36:22'; public $post_content_filtered = ''; public $post_parent = 0; public $guid = 'https://www.greenmarketreport.com/?p=92882'; public $menu_order = 0; public $post_type = 'post'; public $post_mime_type = ''; public $comment_count = '0'; public $filter = 'raw' }) /var/www/html/wp-content/plugins/co-authors-plus/co-authors-plus.php:1542
[01-Feb-2024 15:44:07 UTC] PHP 15. get_coauthors($post_id = class WP_Post { public $ID = 92882; public $post_author = '3'; public $post_date = '2023-04-04 11:36:22'; public $post_date_gmt = '0000-00-00 00:00:00'; public $post_content = '<span style=" font-weight: 400;">While the embattled <a >High Times Holding Corp.</a> waits for its equally financially impaired lender <a >ExWorks to foreclose</a>, the cannabis media company is being sued for reneging on a domain name deal. Merlin Kauffman filed a lawsuit in Florida last week for a final default judgment against Trans High Corporation and High Times Holding Corp. </span>\n\n<span style="font'...; public $post_title = 'High Times Fails To Settlement In 420.com Deal'; public $post_excerpt = ''; public $post_status = 'draft'; public $comment_status = 'open'; public $ping_status = 'open'; public $post_password = ''; public $post_name = ''; public $to_ping = ''; public $pinged = ''; public $post_modified = '2023-04-04 11:36:22'; public $post_modified_gmt = '2023-04-04 15:36:22'; public $post_content_filtered = ''; public $post_parent = 0; public $guid = 'https://www.greenmarketreport.com/?p=92882'; public $menu_order = 0; public $post_type = 'post'; public $post_mime_type = ''; public $comment_count = '0'; public $filter = 'raw' }) /var/www/html/wp-content/plugins/co-authors-plus/template-tags.php:65
]]>
I have a problem displaying co-author avatar using function coauthors_get_avatar. It doesn’t get the $coauthor . How should I use it correctly (using Bricks builder)
]]>The content team gets a bug, once a new post is created and an author is selected and published, it’s all fine. But once they click to edit post, it automatically changes the author back to admin, away from the author the post carries.
]]>PHP Notice: Trying to get property 'term_id' of non-object in /wp-content/plugins/co-authors-plus/co-authors-plus.php on line 1053
PHP Stack trace:
PHP 1. {main}() /wp-admin/users.php:0
PHP 2. wp_delete_user() /wp-admin/users.php:211
PHP 3. do_action() /wp-admin/includes/user.php:380
PHP 4. WP_Hook->do_action() /wp-includes/plugin.php:517
PHP 5. WP_Hook->apply_filters() /wp-includes/class-wp-hook.php:348
PHP 6. CoAuthors_Plus->delete_user_action() /wp-includes/class-wp-hook.php:326
]]>
Hi there. Authors cannot be sorted, and I can only remove the first author. On the front end, it deletes, but the old ones are restored when the page reloads.
My plugin and WP core version are:
Co-Authors Plus 3.5.15 and WP 6.4.2