WPIntell

Source evidence

Custom Post Type Feed

WebSub (FKA. PubSubHubbub) · support · 2018-02-06T09:21:00+00:00

mixedsentiment
mediumseverity
0.78relevance
2replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

3 / 32 rows with source links

9.4% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

29 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
thatcodemonkey resolved
Hi there, Hello Matthias, Thanks for the great plugin! Is it possible to send a specific feed (/feed/?post_type=news) to the hubs? Normal posts get pushed thru, no problem. But if I subscribe to a specific feed url like mydomain.com/feed/?post_type=xyz the push seems not to work, or very delayed (maybe also pulled by the reader itself). Do I need to add a Topic URL somehow? Thanks in advance! This topic was modified 8 years, 3 months ago by thatcodemonkey . This topic was modified 8 years, 3 months ago by thatcodemonkey . I noticed that the <atom:link rel="hub" […]> tag is missing in my custom post type feed xml. Maybe that helps narrowing down the problem? Update: After some digging I realized, that the action hook 'publish_post' does not fire, when a custom post type is published. One has to use another hook like 'publish_{{custom_post_type}}' to catch the publishing and kick-on the push to the hub. In my case I added add_action( 'publish_news', array( 'PubSubHubbub_Plugin', 'publish_post' ) ); to the init() funtion in pubsubhubbub.php This reply was modified 8 years, 3 months ago by thatcodemonkey .

Comments

2 shown
thatcodemonkey 2018-02-06T11:04:00+00:00

I noticed that the <atom:link rel="hub" […]> tag is missing in my custom post type feed xml. Maybe that helps narrowing down the problem?

thatcodemonkey 2018-02-06T16:48:00+00:00

Update: After some digging I realized, that the action hook 'publish_post' does not fire, when a custom post type is published. One has to use another hook like 'publish_{{custom_post_type}}' to catch the publishing and kick-on the push to the hub. In my case I added add_action( 'publish_news', array( 'PubSubHubbub_Plugin', 'publish_post' ) ); to the init() funtion in pubsubhubbub.php This reply was modified 8 years, 3 months ago by thatcodemonkey .