diff --git a/README.md b/README.md index 555eab9..c91d602 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,12 @@ -# WP Libre Form +# WP Libre Form Legacy [![Build Status](https://travis-ci.org/libreform/wp-libre-form.svg?branch=master)](https://travis-ci.org/libreform/wp-libre-form) [![Latest Stable Version](https://poser.pugx.org/anttiviljami/wp-libre-form/v/stable)](https://packagist.org/packages/anttiviljami/wp-libre-form) [![Total Downloads](https://poser.pugx.org/anttiviljami/wp-libre-form/downloads)](https://packagist.org/packages/anttiviljami/wp-libre-form) [![Latest Unstable Version](https://poser.pugx.org/anttiviljami/wp-libre-form/v/unstable)](https://packagist.org/packages/anttiviljami/wp-libre-form) [![License](https://poser.pugx.org/anttiviljami/wp-libre-form/license)](https://packagist.org/packages/anttiviljami/wp-libre-form) +------------------------------- +# Deprecated in favour of WP Libre Form 2 + +WPLF 2 has been rewritten from scratch, and is not backwards compatible with the new version. Migrating data to the new version is not possible, +but you can run the plugins side-by-side if necessary. +------------------------------- Use standard HTML5 markup to create fully functional forms for WordPress ## Features diff --git a/classes/class-cpt-wplf-form.php b/classes/class-cpt-wplf-form.php index 1564ba6..bdf48c6 100644 --- a/classes/class-cpt-wplf-form.php +++ b/classes/class-cpt-wplf-form.php @@ -67,7 +67,7 @@ public static function register_cpt() { $labels = array( 'name' => _x( 'Forms', 'post type general name', 'wp-libre-form' ), 'singular_name' => _x( 'Form', 'post type singular name', 'wp-libre-form' ), - 'menu_name' => _x( 'Forms', 'admin menu', 'wp-libre-form' ), + 'menu_name' => 'Legacy ' . _x( 'Forms', 'admin menu', 'wp-libre-form' ), 'name_admin_bar' => _x( 'Form', 'add new on admin bar', 'wp-libre-form' ), 'add_new' => _x( 'New Form', 'form', 'wp-libre-form' ), 'add_new_item' => __( 'Add New Form', 'wp-libre-form' ), diff --git a/wp-libre-form.php b/wp-libre-form.php index 3e10299..97d49a2 100644 --- a/wp-libre-form.php +++ b/wp-libre-form.php @@ -1,7 +1,7 @@