WPIntell

Source evidence

Doubts about your code…

MWW Scheduled Post Trigger · support · 2019-12-10T21:38:00+00:00

complaintsentiment
mediumseverity
0.69relevance
1replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

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

5 / 20 rows with source links

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

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

15 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
aldemarcalazans unresolved
Hi. I wonder why you used: if (is_front_page() || is_single()) { as a condition to execute your “search and publish missed posts” code. There are WordPress sites that are built, mostly (or exclusively) with pages, and not posts. In this sort of web site, your code will only run if someone access the front page. So, why not using if (is_front_page() || is_single() || is_page) { instead? Regards, This topic was modified 6 years, 5 months ago by aldemarcalazans . This topic was modified 6 years, 5 months ago by aldemarcalazans . I tried to cover sites that had both posts and pages, without it being too heavy on the system. Those that have pages usually have the front page as a landing page, therefore making it more likely a user will hit it. We have to be sensitive to sites that get a LOT of traffic as this could take a toll on the speed index. Thanks for writing!

Comments

1 shown
Jennifer Moss 2019-12-10T21:51:00+00:00

I tried to cover sites that had both posts and pages, without it being too heavy on the system. Those that have pages usually have the front page as a landing page, therefore making it more likely a user will hit it. We have to be sensitive to sites that get a LOT of traffic as this could take a toll on the speed index. Thanks for writing!