Posts Tagged 'search'

Baidu has a sitemap

January 18th, 2010

See here
http://www.baidu.com/search/pageop.htm installed a plug-in, there baidu a special sitemap
http://www.juyimeng.com/sitemap_baidu.xml

Popularity: 5%

UltraEdit Getting Started (1)

March 30th, 2007

The software used for a long time. Written procedures are gradually getting better with it. Process in use, their summary of some small skills, can improve efficiency at work. Must have many friends with this software, if there are other good techniques, but also please share out. I tried to make a simple point of use, because the complex I will not. Began throwing bricks.

ctrl + b
Written procedures, brackets correspond generally, but if too many nested, Kan Huayan, how do? You place the cursor on the brackets begin by ctrl + b, UE will help you find the corresponding brackets at the end of the place. You can also try running on a few more press ctrl + b.
»More: UltraEdit Getting Started (1)

Popularity: 31%

Ultimate Tag Warrior 3 tag ajax search bug fix in Chinese

March 19th, 2007

Ultimate Tag Warrior 3 (wordpress a plugin) the tags ajax search function is good, but the issue of Chinese support. Now offers a way to fix the following:
Open
searchtags.php
In

  1. function searchFor (item, tagid, related) (

Add below

  1. var browser = navigator.appName;
  2. if (browser == "Microsoft Internet Explorer") (
  3. item = escape (item);
  4. )

Search

  1. UTW_ShowWeightedTagSetAlphabetical

The similar

  1. UTW_ShowWeightedTagSetAlphabetical ("",
  2. array ('default' => '
  3. <A id = "tag_% tagid%"
  4. href = "javascript: searchFor (\ '% utag% \', \ '% tagid% \', \ '% relatedtagids% \')"
  5. style = \ 'font-size: 12px; border: none \'>% tagdisplay% </ a> | '), 0)

The code inside the tag replaced utag

Open
ultimate-tag-warrior-core.php
In

  1. $ Format = str_replace ('% tag%', $ tag_name, $ format);

Add below

  1. $ Format = str_replace ('% utag%', urlencode (stripslashes ($ tag_name)), $ format);

Popularity: 17%