Skip to content

Instantly share code, notes, and snippets.

@srdjan-jcc
Created September 7, 2018 12:14
Show Gist options
  • Save srdjan-jcc/6e0f5019f6caffa6b532955897cc16ea to your computer and use it in GitHub Desktop.
Save srdjan-jcc/6e0f5019f6caffa6b532955897cc16ea to your computer and use it in GitHub Desktop.
WPML and WPTouch plugin
<?php
/*
Plugin Name: WPTouch and WPML
Version: 0.1
Description: Applies fixes.
*/
add_filter( 'foundation_is_custom_latest_posts_page', 'wpml_wptouch_is_custom_latest_posts_page_filter' );
function wpml_wptouch_is_custom_latest_posts_page_filter( $true, $latest_posts_page_id, $current_page_id ){
if ( !is_admin() && apply_filters( 'wpml_object_id', $latest_posts_page_id, 'page', true ) == $current_page_id ){
return true;
}
return $true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment