Jump to content

Recommended Posts

PHP Warriors, Please help :)

I am trying to write a function in the genesis framwork that would allow me to add before_content_sidebar_wrap only on page_blog.php for my slider but can't seem to get it to work! I notice that the wrap and hook are added successefully but they display in every page instead of the blog only. Any help would be greatly appreciated. Here is my function
 

add_action('genesis_before_content_sidebar_wrap', 'child_before_content_sidebar_wrap');

    if ( ! ( is_page_template( ‚page_blog.php‚ ) ) )
return;


and here is my website I am displaying the slider on. It should be only on the blog page; mainlinerealtors.com/blog/

Thanks a lot,

Edited by kwmlr439
Link to comment
Share on other sites

Try adding the if statement around the add_action function.

I have never used the genesis framework so this is just a pure stab in the dark.

 

By the way, the syntax looks weird in your if statement!?

if(is_page_template( ,page_blog.php, ) {
  add_action('genesis_before_content_sidebar_wrap', 'child_before_content_sidebar_wrap');
}
Link to comment
Share on other sites

 

Try adding the if statement around the add_action function.

I have never used the genesis framework so this is just a pure stab in the dark.

 

By the way, the syntax looks weird in your if statement!?

if(is_page_template( ,page_blog.php, ) {
  add_action('genesis_before_content_sidebar_wrap', 'child_before_content_sidebar_wrap');
}
Clarkey,

Thanks for your reply; I just tried to add add the if statement before the functions but didn't work; it just went blank :)

Link to comment
Share on other sites

  • 2 weeks later...
Clarkey, on 09 May 2014 - 08:24 AM, said:

I have never used the genesis framework so this is just a pure stab in the dark.

 

 

 

genesis framework is just a way to create wordpress themes, in the end is all the same wordpress code.

Edited by QuickOldCar
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.