這個外掛並未在最新的 3 個 WordPress 主要版本上進行測試。開發者可能不再對這個外掛進行維護或提供技術支援,並可能會與更新版本的 WordPress 產生使用上的相容性問題。

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 by Jason Clark for Montana
State University.

Available languages

  • English
  • Spanish (incomplete)

Follow this project on Github

Development

This plugin uses wp-cli and PHPUnit for testing.
The tests require runkit for mocking functions.

  • Grab the latest source from github:

    $ git clone git@github.com:aptivate/server-side-google-search.git

  • Install wp-cli

  • Install PHPUnit
  • 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 );

使用者評論

這個外掛目前沒有任何使用者評論。

參與者及開發者

以下人員參與了開源軟體〈Server-Side Google Search〉的開發相關工作。

參與者

將〈Server-Side Google Search〉外掛本地化為台灣繁體中文版

對開發相關資訊感興趣?

任何人均可瀏覽程式碼、查看 SVN 存放庫,或透過 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