Descripción
List Locations BMLT is a plugin that returns all unique towns or counties from your BMLT server for a given service body on your site.
SHORTCODE
Basic: [list_locations]
Attributes: root_server, services, recursive, state, delimiter, list, state_skip, city_skip
— Shortcode parameters can be combined
Usage
A minimum of root_server and services attribute are required, which would return all towns for that service body seperated by a comma.
Ex. [list_locations root_server="https://www.domain.org/main_server" services="50"]
Recursive: to recurse service bodies add recursive="1"
Ex. [list_locations root_server="https://www.domain.org/main_server" services="50" recursive="1"]
State: to remove appending of the state add state="0"
Ex. [list_locations root_server="https://www.domain.org/main_server" services="50" state="0"]
State Skip: to skip the inclusion of a state when using state="1" add state_skip="NC"
Ex. [list_locations root_server="https://www.domain.org/main_server" services="50" state="1" state_skip="NC"]
City Skip To skip the inclusion of a city add city_skip="Indianapolis". This can be useful when mentioning a city out of order or in a different part of the text.
Ex. [list_locations root_server="https://www.domain.org/main_server" services="50" state="1" city_skip="Indianapolis"]
Services: to add multiple service bodies just seperate by a comma.
Ex. [list_locations root_server="https://www.domain.org/main_server" services="50,37,26"]
Delimiter: to change the delimiter to something besides a comma I would add delimiter=" – " or to create newlines between each I could do this delimiter="<br>", or delimiter="<p></p>"
Ex. [list_locations root_server="https://www.domain.org/main_server" delimiter="<br>"]
List: You can list by the following town, county, borough, neighborhood. The default is town.
Ex. [list_locations root_server="https://www.domain.org/main_server" list="town"]
custom_query You can add a custom query from semantic api to filter results, for ex by format &formats=54
.
Ex. [list_locations root_server="https://www.domain.org/main_server" custom_query="&formats=54"]
EXAMPLES
https://www.crna.org/area-service-committees/
https://heartoflongislandna.org
MORE INFORMATION
Capturas
Instalación
This section describes how to install the plugin and get it working.
- Download and install the plugin from WordPress dashboard. You can also upload the entire Area Towns BMLT Plugin folder to the /wp-content/plugins/ directory
- Activate the plugin through the Plugins menu in WordPress
- Add [list_locations] shortcode to your WordPress page/post.
- At a minimum assign root_server and services attributes.
Reseñas
Colaboradores y desarrolladores
"List Locations BMLT" es un software de código abierto. Las siguientes personas han colaborado con este plugin.
ColaboradoresTraduce "List Locations BMLT" a tu idioma.
¿Interesado en el desarrollo?
Revisa el código , echa un vistazo al repositorio SVN o suscríbete al registro de desarrollo por RSS.
Registro de cambios
2.3.2
- Fixed issue with settings page not fully rendering.
2.3.1
- Corrected an issue where the settings link was not being displayed on the plugins page.
2.3.0
- You can now specify a template using magic variables from the BMLT.
- Added option to specify a custom query.
- Refactored codebase.
2.2.2
- Fix for various PHP warnings.
2.2.1
- Fix for User-Agent issue that appears to be present on SiteGround hosted root servers.
2.2.0
- Updated version logic for BMLT 3.0.0 compatibility.
2.1.4
- Version bump, fix php issue.
2.1.3
- Fix to better comply with WordPress best practices.
2.1.2
- Minor bug fixes.
2.1.1
- Added Support for Skipping a city using city_skip attribute.
- Code cleanup.
2.1.0
- Added list by borough and neighborhood.
2.0.0
- Added Settings option page, ability to skip a state when using state shortcode using state_skip.
1.1.1
- convert quotes to html entity for wordpress readme examples.
1.1.0
- Add logo.
1.0.2
- Cleanup readme.
1.0.1
- Initial Release