可以在WordPress外壳中查看WP文档吗?

时间:2019-05-17 作者:user3574603

我在浏览WP文档时遇到问题,如果这是常识,请原谅我。

是否可以从shell中查看类和方法的文档?

也就是说,是否可以在wp-shell 将返回给定方法/类的api文档的提示符。

类似于:

doc(get_posts);
#=> get_posts( array $args = null )
# Retrieves an array of the latest posts, or posts matching the given criteria.
# Parameters
# $args
# ...
例如pry-doc Ruby提供了类似的功能。

2 个回复
SO网友:leymannx

略读可用的WP-CLI commands 我想没有这样的事情。您可以在WP-CLI GitHub repo 但是,如果你不解释这种命令的实际必要性,我怀疑这会得到很多关注。

通常在开发时,您使用IDE来获取这些信息。一个好的IDE为您提供自动完成、键入提示或快捷方式,让您可以跳转到某些核心函数。

命名PhpStorm 作为一个内置WordPress支持的示例,当我刚开始键入时,它是这样的wp_:

enter image description here

SO网友:3gth

你可以试试WP-CLI Reference Command. 这既不是官方命令,也不能在内部使用wp shell, 但这将有助于您从命令行获取钩子/函数信息。