I hereby claim:
- I am ibes on github.
- I am ibes (https://keybase.io/ibes) on keybase.
- I have a public key whose fingerprint is 055D A09D 2155 0C23 669B 8313 8942 6064 C685 2682
To claim this, I am signing this object:
| <?php | |
| /** | |
| * Plugin Name: Content Teams | |
| * Plugin URI: https://webdevstudios.com/2016/03/22/building-content-teams-wp-user-groups/ | |
| * Description: Putting together the pieces of Chris Reynolds tutorial to create Content Teams | |
| * Version: 0.1.0 | |
| * Author: Sebastian Gärtner original by Chris Reynolds | |
| * Author URI: https://webdevstudios.com/2016/03/22/building-content-teams-wp-user-groups/ | |
| * Text Domain: wds | |
| * License: GPL-2.0+ |
I hereby claim:
To claim this, I am signing this object:
"WordPlate is a modern WordPress stack built with Composer. It simplifies the fuzziness around WordPress development." - that is, what they say on their website
I don't yet work with it in production but what I saw so far is brilliant. It has a similar approach to Bedrock. WordPlate offers a folder structure and a setup that enables you to manage your WordPress installation via Composer.
| // add to functions.php | |
| // thanks to: https://rudrastyh.com/wordpress/remove-taxonomy-slug-from-urls.html | |
| add_filter('request', 'rudr_change_term_request', 1, 1 ); | |
| function rudr_change_term_request($query){ | |
| $tax_names = array('manufacturer', 'product_cat'); | |
| // specify you taxonomy name here, it can be also 'category' or 'post_tag' |
| /** | |
| * Generated by the WordPress Meta Box generator | |
| * at http://jeremyhixon.com/tool/wordpress-meta-box-generator/ | |
| */ | |
| function produktslogan_get_meta( $value ) { | |
| global $post; | |
| $field = get_post_meta( $post->ID, $value, true ); | |
| if ( ! empty( $field ) ) { |
| <?php | |
| namespace Heise\Shariff\Backend; | |
| class Facebook extends Request implements ServiceInterface | |
| { | |
| public function getName() | |
| { | |
| return 'facebook'; |
| <?php | |
| /** | |
| * create CSV file from address data | |
| * | |
| * @var array Address Data | |
| * @return string formated CSV file | |
| */ | |
| function createCsv($address) { |
| <?php | |
| define('VERSION', '0.1'); | |
| /** | |
| * Vanilla Attachments to FileUpload Porter | |
| * This is not an official Vanilla Plugin, Layout was taken from Vanilla 2 Exporter | |
| * This script puts Vanilla1 Attachment files to Vanilla 2 FileUpload | |
| * see http://www.vanillaforums.org/discussion/13136/attachments-to-fileupload-importer for more information | |
| * The function of this script comes from user rayk. | |
| * brought to PHP and made more user friendly by user vegano |
| <html> | |
| <body> | |
| <?php | |
| /* Someone should write an GUI for that. | |
| * a form with files: | |
| * csv_path, path to attachments-files, path to fileUpload-folder, checkbox wether it's a testrun or files should be copied, dispersion-factor | |
| * | |
| * What does this script? |