We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09d7af7 commit 0d8cb65Copy full SHA for 0d8cb65
plugins/optimization-detective/optimization.php
@@ -248,7 +248,13 @@ function od_optimize_template_output_buffer( string $buffer ): string {
248
$query_vars = od_get_normalized_query_vars();
249
$slug = od_get_url_metrics_slug( $query_vars );
250
$post = OD_URL_Metrics_Post_Type::get_post( $slug );
251
- $post_id = $post instanceof WP_Post && $post->ID > 0 ? $post->ID : null;
+
252
+ /**
253
+ * Post ID.
254
+ *
255
+ * @var positive-int|null $post_id
256
+ */
257
+ $post_id = $post instanceof WP_Post ? $post->ID : null;
258
259
$tag_visitor_registry = new OD_Tag_Visitor_Registry();
260
0 commit comments