Be aware that a mix of return
and echo
from a function will change text positioning.
If you take this simple example :
function test(){
$the_test="test return";
echo 'test echo';
return $the_test;
}
echo test();
Whatever the place of the echoed line, this line will be always print before echo test();
because echo is called before the return $the_test;
You need to play with get_template_part and/or template_redirect action to display your content like you want.
Hope your understand what I mean and the relation with your issue 😉
Related Posts:
- Dynamically Override Fancy Title
- get_current_screen() return null
- Call to undefined function is_home() or any conditional tags
- Difference Between Filter and Action Hooks?
- Explanation of the “posts_join” and “posts_fields” filter hooks?
- How do you use the plugin boilerplate loader class to hook actions and filters?
- How do I Make a Theme “plugin-ready”?
- function triggered by “manage_users_custom_column” filter not working
- How to modify post content before writing to database?
- Determine which theme location a wp_get_nav_menu_items is for
- What’s the difference between hooks, filters and actions? [duplicate]
- How to use filter hook ‘post_updated_messages’ in coherence with action hook ‘save_post’
- Is it possible to create an action hook using do_action() within add_action()?
- Hook for post permalink update
- Define a function outside a class and call the function using action or filter hook
- Does add_filter work outside functions.php
- What function to hook for changes made in status and visibility of a post
- Synchronize Custom post type tags to WordPress default posts tags
- Woocommerce – Hide a Column in Cart Table
- Namespaced action and filter tags
- best practice for query string values – get_query_var always empty for my value supplied in query string
- Adding option to Gallery shortcode
- correct way to call javascript into hook function
- Prefixing plugin hooks (actions/filters) with a wrapper class or functions
- WordPress custom taxonomy check box to dropdown
- WordPress class, using add_action to call member function does not work
- How to get all queries’s results after they have executed?
- Remove an action by extending class and replacing it
- hook filter after the_content on a specific page
- Bind a function with its own argument to show something dynamically after every content
- Hook add_attachment error
- WooCommerce change Tax Class programmatically when Recalculating an existing Order [closed]
- Update variable value via add_filter
- Configure WordPress to Generate Scheme-less Relative URLs
- How to find list of all functions bind to a particular hook from my plugin?
- Adding tables to dashboard pages programmatically?
- apply_filters() and call_user_func() to define and call a function outside a class
- Override category archive page title (not the head title)
- Limit get_next_post to posts from the same author
- Any way, hook to add content right before the “read more” link?
- Does hooking into a plugin action / filter override the plugin’s function for that hook?
- WordPress Plugin Boilerplate – add actions and/or filters based on user’s role
- Add_action not calling callback function
- Function not working on any file other than the main plugin file
- Template file structure , wordpress hook for altering the template
- WordPress permalink setting
- How do I replace title with my plugin?
- Apply function on all action hooks?
- get_term_by() returning null on plugin
- Ninja Forms: Front-End Forms, Post ID?
- How to enhance a self developed plugin by its own plugin architecture
- Trigger function on Remove block or add new block in Gutenberg JavaScript
- Add default value from selection
- How to update global variables in plugin activation callback?
- Woocommerce get_term_by() in transition_post_status hook doesn’t works
- function add custom fields to media gallery
- Unpublished Pages Failing To Appear On Custom Path
- Add two button to page and post admin to redirect to : add new & list of (posts – pages) just after saving post or page
- `registration_errors` filter doesn’t seem to be called
- How to grab data after wp user search is complete
- The function called on the wp head hook becomes null
- Save_post – Warning: Cannot modify header information
- Make visible page only in the trash
- custom error message for empty username and password using authenticate filter not working
- Redirection from a specific page for users logged in but not with membership
- WordPress: I wanted to use Add rewrite rule multiple times for multiple CPT in my plugin
- Override woocommerce loop-start.php from theme using plugin?
- How Do I Unhook This Parent Theme Function?
- Is there any way to get post meta from publish_post hook?
- Why does do_action pass a blank string as the first parameter if no $arg is set?
- Add a custom submenu under submenu in a Custom WordPress Plugin
- Why would one specify multiple arguments when using get_previous_posts_link() which takes only one parameter?
- I cant add is_admin control to plugin
- using filter and hook inside class
- WordPress Ajax not returning Response
- Plugin function in child theme
- How do I ensure I can loop through every enqueued script and CSS?
- Hook for validating and rejecting frontend image upload
- Use action, filter, or hook to append HTML to WordPress plugin function
- Nested Hooks with do_action for performance reasons – safe/necessary?
- Problem in plugin debuging in wordpress
- Remove tag from all posts when publishing new post
- WordPress plugin how to run function when button is clicked
- OOP development and hooks
- Plugin Development – Call to undefined function comment_exists()
- wp_ajax add_action fuction won’t fire on custom jQuery action
- Redirect theme directory to plugin theme directory
- remove different admin menu for specific users
- WordPress Reset password Strength set to medium
- Change Front page displays settings conditionally when user is online
- login_message filter not working
- replacing jquery google cdn with a new version dynamically
- Prevent plugin activation and add admin notice
- I have a plugin where in I have to change the title of the page dynamically by sending parameter to the_title filter
- WordPress Dropdown image select
- Add function to Dokan ajax class
- how to retrieve post_id under woocommerce_add_to_cart_validation hook?
- Modify search form with plugin
- How and when would I implement some code which would take data from one part of the Db and put it in another?
- Single_template for a custom post type created from a plugin is returning an empty page