The first problem is that your parentheses are incorrect in your IF statement.
if ( ( $get_post_categories = get_transient( 'this_blog_categories' ) === FALSE ) )
Should be:
if ( ( $get_post_categories = get_transient( 'this_blog_categories' ) ) === false )
You’re wanting to assign the value, and then test that value against false. Because of your incorrect parentheses, what you’re doing is to compare the transient against false, then assign the result of that comparison to $get_post_categories. Comparisons have higher precedence than assignments in PHP.
That will likely fix your problem. However, you have another problem here:
set_transient( 'this_blog_categories', $get_post_categories );
Transients should have expiration times. Otherwise, your transient will never expire and you’ll never refresh the data at all.
Related Posts:
- Why is wp_head() creating a top margin at the top of my theme header?
- What is $post_id? is it a global variable in WordPress?
- How to limit wordpress menu depth in admin panel
- How can I set image sizes and still have responsive images using the srcset attribute?
- Call dynamic_sidebar but include/exclude named widgets?
- Possible to “Attach” images to multiple posts without inserting or uploading twice?
- Remove settings if theme is deleted?
- Adding customizer styles with wp_add_inline_style
- Adding widgets programatically: how to avoid collisions?
- Why max-width:97.5% on content images?
- Registering Sidebars and Sidebar Widgets. Sidebar Widgets Not Displaying
- How do I get a parent theme modification from a child theme?
- Removing the default sidebar from admin panel
- Extend walker – navigation, adding data attribute to a tag
- How to display category specific post content on a page
- Is there any need to use both wp_reset_postdata and wp_reset_query together?
- how to pull wordpress post comments to a external page
- Enqueued Stylesheets Effecting Admin Styles
- How to change the customizer´s sidebar width?
- Why is $GLOBALS[‘content_width’] needed if site is responsive?
- How i can get widgets areas working in customizer?
- Same theme name issue with wordpress repository theme
- Compact pingback list with favicons
- Removing feeds from header using a function?
- How to add theme support?
- Parse error: syntax error, unexpected T_ENDWHILE in
- Multiple Page Templates & CSS
- How do you apply multiple skins to a site via the “templates” selector using stylesheet switching?
- Divi Child Theme not appearing in “Themes” [closed]
- I need to know how to structure my WordPress theme
- Featured Images are not able to be set
- Single-level menu option? Another way?
- Any dummy content I can use for development?
- How to add an option for “nofollow” to the Link editor’s existing “Link Relationship(XFN) options list?
- Font Awesome 5 Free – far working but fas is not? [closed]
- What’s the best practice way of handling custom fields in different post formats?
- How to remove header image in Twenty Eleven theme?
- How to create a fixed header and scrolling content area
- Edit value of the_content() before showing
- is_home and is_frontpage always true
- How to correctly enqueue the parent and child theme stylesheets in the creation of a child theme? [duplicate]
- header_image not returning header image url
- WordPress linking
- wp.media issue with selected image
- Why does admin-ajax load slow and what are ways to speed it up?
- How to style bootstrap container in wordpress theme?
- Wamp Server error on running wordpress theme on localhost. How do I fix this error? [closed]
- searchform.php doesn’t work properly
- Shortcodes do not work in own template
- Adding Bootstrap to WordPress TwentySixteen Theme
- What are the allowable Tags values in a theme file header?
- $_POSTing to and modifying the WP search results page
- Confused by the behaviour of “front page” / “home” templates
- Following/tracing page construction through theme PHP
- Get themes’s images path in WordPress Multisite
- my single.php is mixup on some post for no reason
- altering search terms
- Creating a theme update notification api [duplicate]
- Custom menu: Link names
- Post thumbnails Retrieve Url
- Stylesheet is not loading on firefox and IE!
- Inconsistent bloginfo information
- How to custom category template based on category?
- add_action for admin_init hook with a parameter
- get_the_terms() returning wrong results inside of loop
- custom post type query causing errors
- Category-specific loop not working
- How to diagnose wp-env environment problem
- how can i remove js file from my footer in wordpress
- WordPress Admin bar missing from custom theme
- When I save changes for css and js in my WP localhost env windows 10 the changes don’t take effects immediately!
- How to dynamically set a background image with the customizer without putting the css as an inline-style
- Updatable theme developing
- SIte logo is not displaying
- wordpress custom category post shortcode
- How to make menus, footer, sidebars multi language
- Unable to delete option
- overlay post title over post’s featured image
- how to add jquery to wordpress
- Hook in parent theme Menu function
- How to add custom nav_menu_css_class to certain menu only?
- Need help with adding custom menu content
- How to avoid Ajax in wordpress theme in making mulitple request?
- Import from HubSpot COS into WordPress 4?
- child comments not displaying as nested
- Any disadvandages if I style the wordpress align classes without img and .wp-caption prefix
- Simple loop with shortcode rendering problem
- Theme automatically inserting “more” tag on every post
- How get the 10 most viewed pages (not post)
- WordPress widgets manager option for emulating theme layout
- Conditional tags issue for multiple is_page() conditions in sidebar.php
- Onepage with shortcodes
- Allowed memory size of (…) exhausted
- have_posts() return false on single post
- Is using display: none the proper way to hide elements in a theme?
- Twenty sixteen – full height
- Correct way to make a custom block theme responsive
- Feeds are showing where Post archive page should be
- WordPress Two Level Filters on Getting Custom Taxonomy Terms
- I want to resize post featured image without cropping image. How?