This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Add this to theme functions.php and rebuild the index to remove Formidable Forms entries from index | |
add_filter( 'relevanssi_indexing_restriction', 'rlv_no_formidable' ); | |
function rlv_no_formidable( $restriction ) { | |
global $wpdb; | |
$restriction['mysql'] .= " AND post.ID NOT IN (SELECT post_id FROM $wpdb->postmeta WHERE meta_key = '_wp_attached_file' AND meta_value LIKE 'formidable%' ) "; | |
$restriction['reason'] .= ' No Formidable Forms entries'; | |
return $restriction; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* /lib/indexing.php | |
* | |
* @package Relevanssi | |
* @author Mikko Saari | |
* @license https://wordpress.org/about/gpl/ GNU General Public License | |
* @see https://www.relevanssi.com/ | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function rlv_category_dropdown() { | |
global $rlv_categories_present, $wp_query; | |
$select = "<div id='catCheckboxes'><p>Choose a category:</p>"; | |
$cat_params = array_map( 'intval', explode( ',', $wp_query->query_vars['cats'] ) ); | |
foreach ( $rlv_categories_present as $cat_id => $cat_name ) { | |
$checked = ''; | |
if ( in_array( $cat_id, $cat_params, true ) ) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter( 'relevanssi_custom_field_value', 'rlv_tablepress_in_acf' ); | |
function rlv_tablepress_in_acf( $value ) { | |
$tablepress_controller = relevanssi_enable_tablepress_shortcodes(); | |
$post_before_shortcode = $post; | |
$value[0] = do_shortcode( $value[0] ); | |
$post = $post_before_shortcode; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_action('template_redirect', 'one_match_redirect'); | |
function one_match_redirect() { | |
if (is_search()) { | |
global $wp_query; | |
if ($wp_query->post_count == 1) { | |
wp_redirect( get_permalink( $wp_query->posts['0']->ID ) ); | |
exit(); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter( 'relevanssi_remove_punctuation', 'rlv_arabic_remap', 9 ); | |
function rlv_arabic_remap( $a ) { | |
$remap = array( | |
'إ' => 'ا', | |
'آ' => 'ا', | |
'أ' => 'ا', | |
'ئ' => 'ى', | |
'ة' => 'ه', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div role="search" class="search-form-wrapper"> | |
<form method="get" class="g1-searchform-tpl-default search-form" action="https://beezfac.com/m/"> | |
<label> | |
<span class="screen-reader-text">Search for:</span> | |
<input type="search" class="search-field" placeholder="Search …" value="" name="s" title="Search for:"> | |
<input type="hidden" name="searchblogs" value="all" /> | |
</label> | |
<button class="search-submit">Search</button> | |
</form> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* The template for displaying Search Results pages. | |
* | |
* @package dokan | |
* @package dokan - 2014 1.0 | |
*/ | |
get_header(); | |
?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: WP Widget RSS Alpha | |
* Description: WP RSS Widget, joka näyttää koko syötteen aakkosjärjestyksessä | |
* Version: 1 | |
* Author: Mikko Saari | |
* Author URI: http://www.mikkosaari.fi/ | |
*/ | |
/** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function relevanssi_polylang_where_include_terms( $where ) { | |
global $wpdb; | |
$current_language = substr( get_locale(), 0, 2 ); | |
if ( function_exists( 'pll_current_language' ) ) { | |
$current_language = pll_current_language(); | |
} | |
$languages = get_terms( array( 'taxonomy' => 'language' ) ); |