我在浏览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提供了类似的功能。