Changeset 3407685
- Timestamp:
- 12/02/2025 09:03:51 AM (4 months ago)
- File:
-
- 1 edited
-
instarank/trunk/api/endpoints.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
instarank/trunk/api/endpoints.php
r3407673 r3407685 4660 4660 setup_postdata($post); 4661 4661 4662 // Get the rendered content 4662 // Get the rendered content (using WordPress core filter) 4663 // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound -- Using WP core filter 4663 4664 $content = apply_filters('the_content', $post->post_content); 4664 4665 … … 4796 4797 $page_url = get_permalink($post->ID); 4797 4798 4798 // Build full HTML 4799 // Build full HTML (using WordPress core filter) 4799 4800 setup_postdata($post); 4801 // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound -- Using WP core filter 4800 4802 $content = apply_filters('the_content', $post->post_content); 4801 4803 $html = $this->build_page_html($post, $content, $meta);
Note: See TracChangeset
for help on using the changeset viewer.