Identifying a Wordpress site

南笙酒味 提交于 2021-02-05 09:44:39

问题


Can any one please help me how to identify a given a website is a word press based or not ?

For example: flashnewstoday.com


回答1:


That website has the following in the header:

<meta name="generator" content="WordPress 3.0.2" />

You can also try accessing WordPress-specific URLs, like http://flashnewstoday.com/wp-login.php




回答2:


i usually just go to view-source and look for path that includes wp-content, and if it does most likely its wordpress powered. seems like flashnewstoday.com is wp powered

also this:

<meta name="generator" content="WordPress 3.0.1" />



回答3:


There is no way to 100% identify the back end of a web site. It could be being typed by a team of monkeys. There may be clues in various bits of HTML, but they may be wrong or misleading - I can make a Django web page output the same tags that others on here say identify a WordPress site.

Why do you want to know?




回答4:


If the core WordPress engine has not been modified, the simplest way is to look for an HTML element like this:

<meta name="generator" content="WordPress 3.0.1" />

The version number may be different, so just checking if the content attribute contains the string "WordPress" should be sufficient.




回答5:


Looking for

<meta name="generator" content="WordPress x.x.x" />

is not a sure fire way to tell the site is WP. There are plugins and WP functions that remove that tag in the interest of some "security through obscurity."

Look for directories like /wp-content/ and /wp-content/plugins/

And look for a CSS file at http://mydomain.com/wp-content/themes/somethemename/style.css and view that file for info on the theme itself.



来源:https://stackoverflow.com/questions/4452993/identifying-a-wordpress-site

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!