Title: Server-Side Google Search
Author: Aptivate
Published: <strong>જાન્યુઆરી 6, 2015</strong>
Last modified: ઓગસ્ટ 17, 2015

---

પ્લગીન શોધો

આ પલ્ગઇન ** 2 વર્ષથી વધુમાં અપડેટ કરવામાં આવ્યો નથી **. એ કદાચ જાળવવામાં અથવા સપોર્ટેડ
નહી હોય. વર્ડપ્રેસ ના વધુ તાજેતરનાં સંસ્કરણો સાથે ઉપયોગમાં લેવાય તો સુસંગતતા મુદ્દાઓ
હોઈ શકે છે.

![](https://s.w.org/plugins/geopattern-icon/server-side-google-search.svg)

# Server-Side Google Search

 [Aptivate](https://profiles.wordpress.org/aptivate/) દ્વારા

[ડાઉનલોડ](https://downloads.wordpress.org/plugin/server-side-google-search.1.0.3.zip)

 * [વિગતો](https://gu.wordpress.org/plugins/server-side-google-search/#description)
 * [સમીક્ષાઓ](https://gu.wordpress.org/plugins/server-side-google-search/#reviews)
 *  [સ્થાપન](https://gu.wordpress.org/plugins/server-side-google-search/#installation)
 * [ડેવલપમેન્ટ](https://gu.wordpress.org/plugins/server-side-google-search/#developers)

 [સપોર્ટ](https://wordpress.org/support/plugin/server-side-google-search/)

## વર્ણન

This plugin adds Google Custom Search to your website, but unlike other plugins

operates on the server side, thus eliminating the need for JavaScript and keeping
the page size small.

The admin interface is based on that used by the [WP Google Search plugin]
 (https://
wordpress.org/plugins/wp-google-search/)

The interface with the Google API is based on [Digital Collection Search](https://github.com/jasonclark/digital-collections-custom-search-api)
by Jason Clark for Montana
 State University.

#### Available languages

 * English
 * Spanish (incomplete)

[Follow this project on Github](https://github.com/aptivate/server-side-google-search)

### Development

This plugin uses [wp-cli](http://wp-cli.org/) and [PHPUnit](https://phpunit.de/)
for testing.
 The tests require [runkit](https://github.com/zenovich/runkit) for
mocking functions.

 * Grab the latest source from github:
 * $ git clone git@github.com:aptivate/server-side-google-search.git
 * Install [wp-cli](http://wp-cli.org/#install)
 * Install [PHPUnit](https://phpunit.de/)
 * Set up runkit:
 * $ git clone https://github.com/zenovich/runkit.git
    $ cd runkit $ phpize $ ./
   configure $ sudo make install

Add the following lines to `/etc/php5/cli/php.ini`:

    ```
    extension=runkit.so
    runkit.internal_override=1
    ```

 * Install the test WordPress environment:
 * cd server-side-google-search
    bash bin/install-wp-tests.sh test_db_name db_user‘
   db_password’ db_host version

where:
 ** `test_db_name` is the name for your **temporary** test WordPress database**`
db_user` is the database user name ** `db_password` is the password ** `db_host`
is the database host (eg `localhost`) ** `version` is the version of WordPress (
eg `4.2.2` or `latest`)

 * Run the tests
    phpunit

## સ્થાપન

 1. Upload the plugin to the `/wp-content/plugins/` directory.
 2. Activate it through the **Plugins** menu in WordPress.
 3. Register your Google Custom Search Engine and get your Google Search Engine ID 
    and API key here: https://www.google.com/cse/
 4. Enable the plugin and enter the Google Search Engine ID and API key (**Settings**-
    > **Server-Side Google Search**)
 5. If necessary, add the default search widget to the sidebar where you want to see
    it
 6. Put the Server-Side Google Search widget on the sidebar where you want to see the
    results
 7. Your theme will need to override the page that displays the “Nothing Found”
     message
    when the search results are displayed.

#### Example of how to add custom metadata to search results

In your header.php:

    ```
    <!--
    <PageMap>
        <DataObject type="post_metadata">
            <Attribute name="modified_date" value="<?php the_modified_date( "M d, Y", '', '', true ); ?>" />
        </DataObject>
    </PageMap>
    -->
    ```

In your functions.php:

    ```
    function add_modified_date( $metadata, $item_data ) {
        return $metadata . sprintf(
            'Last modified on: %s',
            $item_data['pagemap']['post_metadata'][0]['modified_date']
        );
    }

    add_filter( 'ssgs-add-post-search-metadata',
                'add_modified_date', 10, 2 );
    ```

## સમીક્ષાઓ

આ પ્લગઇન માટે કોઈ સમીક્ષાઓ નથી.

## ફાળો આપનાર & ડેવલપર્સ

આ ઓપન સોર્સ સોફ્ટવેર છે. નીચેના લોકો એ આ પ્લગિન માટે ફાળો આપ્યો છે.

ફાળો આપનારા

 *   [ Aptivate ](https://profiles.wordpress.org/aptivate/)

[“Server-Side Google Search” ને તમારી ભાષામાં અનુવાદ કરો.](https://translate.wordpress.org/projects/wp-plugins/server-side-google-search)

### વિકાસમાં રસ ધરાવો છો?

[કોડ બ્રાઉઝ કરો](https://plugins.trac.wordpress.org/browser/server-side-google-search/),
જોવો[અસ્વીએન રેપોઝિટરીમાંથી](https://plugins.svn.wordpress.org/server-side-google-search/),
અથવા સબ્સ્ક્રાઇબ કરો[ડેવલપમેન્ટ](https://plugins.trac.wordpress.org/log/server-side-google-search/)
દ્વારા[આરઅસઅસ](https://plugins.trac.wordpress.org/log/server-side-google-search/?limit=100&mode=stop_on_copy&format=rss).

## ચેન્જલૉગ

#### 1.0.3

 * Removed deprecation warnings for WordPress 4.3
 * Fixed potential bug where sort argument wasn’t being preserved in links
 * Updated test infrastructure to use wp-cli
 * Documentation updates

#### 1.0.2

 * Added filter to allow custom metadata in search results

#### 1.0.1

 * Made display of URLs in search results optional (displayed by default)
 * Right aligned sort options in search results

#### 1.0.0

 * First version

## મેટા

 *  વર્ઝન **1.0.3**
 *  છેલ્લી અપડેટ: **11 વર્ષ પહેલા**
 *  સક્રિય સ્થાપનો: **10+**
 *  વર્ડપ્રેસ વર્ઝન ** 3.7 અથવા ઉચ્ચતર **
 *  **4.3.34** સુધી પરીક્ષણ કર્યું
 *  ભાષા
 * [English (US)](https://wordpress.org/plugins/server-side-google-search/)
 * ટૅગ્સ:
 * [google](https://gu.wordpress.org/plugins/tags/google/)[google custom search](https://gu.wordpress.org/plugins/tags/google-custom-search/)
   [google search](https://gu.wordpress.org/plugins/tags/google-search/)[SCE](https://gu.wordpress.org/plugins/tags/sce/)
 *  [વિગતવાર દૃશ્ય](https://gu.wordpress.org/plugins/server-side-google-search/advanced/)

## પૉઇન્ટ્સ

હજુ સુધી કોઈ સમીક્ષા સબમિટ કરવામાં આવી નથી.

[Your review](https://wordpress.org/support/plugin/server-side-google-search/reviews/#new-post)

[બધા  સમીક્ષાઓ જુઓ](https://wordpress.org/support/plugin/server-side-google-search/reviews/)

## ફાળો આપનારા

 *   [ Aptivate ](https://profiles.wordpress.org/aptivate/)

## સપોર્ટ

કંઈક કહેવું છે? મદદ જોઈએ છે?

 [આધાર ફોરમ જુઓ](https://wordpress.org/support/plugin/server-side-google-search/)