You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use the add_action( 'after_page_content); on my child themes. The code is perfect. But I have something in my mind, why if I use "before_page_content" is not working, Only "after_page_content" will work. Im planning to create a title page on the top on the content.
Is it possible to use a add_action( 'before_page_content','custom_title',1);
to make the result insert that title before " .contentwrap #page "? So that the title will be like this?
See link: http://screencast.com/t/AeDas11k
For now, Im using
jQuery(".contentwrap .page-header").insertBefore(".contentwrap #page");
to get my goal.
The text was updated successfully, but these errors were encountered:
Add the above in your template before get_header()
This won't work now cause you will get the title twice. Currently jbst_page_title(); isn't hooked. For the next update i will hook this function too and also create a filter for the page title, so you can do:
Question from @mjteves1986:
I use the add_action( 'after_page_content); on my child themes. The code is perfect. But I have something in my mind, why if I use "before_page_content" is not working, Only "after_page_content" will work. Im planning to create a title page on the top on the content.
This is my code.
The result of that code is like this: http://screencast.com/t/A5vZQDB8
Is it possible to use a add_action( 'before_page_content','custom_title',1);
to make the result insert that title before " .contentwrap #page "? So that the title will be like this?
See link: http://screencast.com/t/AeDas11k
For now, Im using
jQuery(".contentwrap .page-header").insertBefore(".contentwrap #page");
to get my goal.
The text was updated successfully, but these errors were encountered: