Category: Shortcodes
-
WP-CLI
All three (3) shortcodes have command-line equivalents. The syntax is a little different, but the options are the same. Commands can be used to run quick tests. Or they can be used, for instance, to pre-generate content by piping the outputs into files. $ wp xslt transform_xml –xsl=’sample-xsl’ –xml=’sample-xml’ –testparam=’HERE’ > ./cli-outfile.txt $ wp xslt…
-
[xslt_select_csv/]
‘xslt_select_xml’ is a helper function. It reads XML and returns a subset of the data, based on a supplied XPATH expression. Used to pre-filter data passed to ‘xslt_transform_xml’, ‘xslt_select_xml’ allows for more generic, reuseable stylesheets. Missing input csv file ” is a helper function for converting CSV data to XML. Once reformatted, the result can…
-
[xslt_select_xml/]
‘xslt_select_xml’ is a helper function. It reads XML and returns a subset of the data, based on a supplied XPATH expression. Used to pre-filter data passed to ‘xslt_transform_xml’, ‘xslt_select_xml’ allows for more generic, reuseable stylesheets. is a helper function. It reads XML and returns a subset of the data, based on a supplied XPATH expression.…
-
[xslt_transform_xml/]
‘xslt_transform_xml’ is the plugin’s primary function. This shortcode processes XML data using an XSL stylesheet, and then outputs the result as HTML, more XML, or as simple TEXT. <NODATA/> is the plugin’s primary function. This shortcode processes XML data using an XSL stylesheet, and then outputs the result as HTML, more XML, or as simple…