Diff
checker
テキスト
テキスト
画像
ドキュメント
Excel
フォルダ
Legal
Enterprise
デスクトップ
料金
ログイン
Diffchecker デスクトップのダウンロード
テキスト比較
2 つのテキスト ファイルの違いを見つける
ツール
履歴
ライブエディター
未変更行を折りたたむ
折り返しなし
レイアウト
分割
統合
比較精度
スマート
単語
文字
シンタックスハイライト
構文を選択
無視
テキスト変換
最初の差分へ移動
入力を編集
Diffchecker Desktop
Diffcheckerを実行する最も安全な方法。Diffchecker Desktopアプリを入手:あなたの差分はコンピューターから出ることはありません!
Desktopを入手
login.php file version 2.6.1 vs. 2.0.4
作成日
3 年前
差分は期限切れになりません
クリア
エクスポート
共有
説明
169 削除
行
合計
削除
文字
合計
削除
この機能を引き続き使用するには、アップグレードしてください
Diff
checker
Pro
価格を見る
157 行
すべてコピー
48 追加
行
合計
追加
文字
合計
追加
この機能を引き続き使用するには、アップグレードしてください
Diff
checker
Pro
価格を見る
138 行
すべてコピー
コピー
コピー済み
コピー
コピー済み
<?php
<div class="um <?php echo
$this->get_class( $mode )
; ?> um-<?php echo esc_attr( $form_id ); ?>">
/**
* Template for the login form
*
* This template can be overridden by copying it to yourtheme/ultimate-member/templates/login.php
*
* Page: "Login"
*
* @version 2.6.1
*
* @var string $mode
* @var int $form_id
* @var array $args
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
} ?>
<div class="um <?php echo
esc_attr(
$this->get_class( $mode )
)
; ?> um-<?php echo esc_attr( $form_id ); ?>">
<div class="um-form">
<div class="um-form">
コピー
コピー済み
コピー
コピー済み
<form method="post" action="" autocomplete="off">
<form method="post" action="" autocomplete="off">
コピー
コピー済み
コピー
コピー済み
<?php
<?php
/**
/**
* UM hook
* UM hook
*
*
* @type action
* @type action
* @title um_before_form
* @title um_before_form
* @description Some actions before login form
* @description Some actions before login form
* @input_vars
* @input_vars
* [{"var":"$args","type":"array","desc":"Login form shortcode arguments"}]
* [{"var":"$args","type":"array","desc":"Login form shortcode arguments"}]
* @change_log
* @change_log
* ["Since: 2.0"]
* ["Since: 2.0"]
* @usage add_action( 'um_before_form', 'function_name', 10, 1 );
* @usage add_action( 'um_before_form', 'function_name', 10, 1 );
* @example
* @example
* <?php
* <?php
* add_action( 'um_before_form', 'my_before_form', 10, 1 );
* add_action( 'um_before_form', 'my_before_form', 10, 1 );
* function my_before_form( $args ) {
* function my_before_form( $args ) {
* // your code here
* // your code here
* }
* }
* ?>
* ?>
*/
*/
do_action( 'um_before_form', $args );
do_action( "um_before_
form
", $args );
/**
* UM hook
*
* @type action
* @title um_before_{$mode}_fields
* @description Some actions before login form fields
* @input_vars
* [{"var":"$args","type":"array","desc":"Login form shortcode arguments"}]
* @change_log
* ["Since: 2.0"]
* @usage add_action( 'um_before_{$mode}_fields', 'function_name', 10, 1 );
* @example
* <?php
* add_action( 'um_before_{$mode}_fields', 'my_before_fields', 10, 1 );
* function my_before_form( $args ) {
* // your code here
* }
* ?>
*/
do_action( "um_before_
{$mode}_fields
", $args );
コピー
コピー済み
コピー
コピー済み
/**
/**
* UM hook
* UM hook
*
*
* @type action
* @type action
* @title um_
main
_{$mode}_fields
* @title um_
before
_{$mode}_fields
* @description Some actions before login form fields
* @description Some actions before login form fields
* @input_vars
* @input_vars
* [{"var":"$args","type":"array","desc":"Login form shortcode arguments"}]
* [{"var":"$args","type":"array","desc":"Login form shortcode arguments"}]
* @change_log
* @change_log
* ["Since: 2.0"]
* ["Since: 2.0"]
* @usage add_action( 'um_before_{$mode}_fields', 'function_name', 10, 1 );
* @usage add_action( 'um_before_{$mode}_fields', 'function_name', 10, 1 );
* @example
* @example
* <?php
* <?php
* add_action( 'um_before_{$mode}_fields', 'my_before_fields', 10, 1 );
* add_action( 'um_before_{$mode}_fields', 'my_before_fields', 10, 1 );
* function my_before_form( $args ) {
* function my_before_form( $args ) {
* // your code here
* // your code here
* }
* }
* ?>
* ?>
*/
*/
do_action( "um_
main
_{$mode}_fields", $args );
do_action( "um_
before
_{$mode}_fields", $args );
コピー
コピー済み
コピー
コピー済み
/**
/**
* UM hook
* UM hook
*
*
* @type action
* @type action
* @title um_
after_form
_fields
* @title um_
main_{$mode}
_fields
* @description Some actions
after
login form fields
* @description Some actions
before
login form fields
* @input_vars
* @input_vars
* [{"var":"$args","type":"array","desc":"Login form shortcode arguments"}]
* [{"var":"$args","type":"array","desc":"Login form shortcode arguments"}]
* @change_log
* @change_log
* ["Since: 2.0"]
* ["Since: 2.0"]
* @usage add_action( 'um_
after_form
_fields', 'function_name', 10, 1 );
* @usage add_action( 'um_
before_{$mode}
_fields', 'function_name', 10, 1 );
* @example
* @example
* <?php
* <?php
* add_action( 'um_
after_form
_fields', 'my_
after_form
_fields', 10, 1 );
* add_action( 'um_
before_{$mode}
_fields', 'my_
before
_fields', 10, 1 );
* function my_
after
_form
_fields
( $args ) {
* function my_
before
_form
( $args ) {
* // your code here
* // your code here
* }
* }
* ?>
* ?>
*/
*/
do_action(
'
um_
after_form
_fields
'
, $args );
do_action(
"
um_
main_{$mode}
_fields
"
, $args );
コピー
コピー済み
コピー
コピー済み
/**
/**
* UM hook
* UM hook
*
*
* @type action
* @type action
* @title um_after_
{$mode}
_fields
* @title um_after_
form
_fields
* @description Some actions after login form fields
* @description Some actions after login form fields
* @input_vars
* @input_vars
* [{"var":"$args","type":"array","desc":"Login form shortcode arguments"}]
* [{"var":"$args","type":"array","desc":"Login form shortcode arguments"}]
* @change_log
* @change_log
* ["Since: 2.0"]
* ["Since: 2.0"]
* @usage add_action( 'um_after_
{$mode}
_fields', 'function_name', 10, 1 );
* @usage add_action( 'um_after_
form
_fields', 'function_name', 10, 1 );
* @example
* @example
* <?php
* <?php
* add_action( 'um_after_
{$mode}
_fields', 'my_after_form_fields', 10, 1 );
* add_action( 'um_after_
form
_fields', 'my_after_form_fields', 10, 1 );
* function my_after_form_fields( $args ) {
* function my_after_form_fields( $args ) {
* // your code here
* // your code here
* }
* }
* ?>
* ?>
*/
*/
do_action( "um_after_
{$mode}
_fields", $args );
do_action( "um_after_
form
_fields", $args );
コピー
コピー済み
コピー
コピー済み
/**
/**
* UM hook
* UM hook
*
*
* @type action
* @type action
* @title um_after_
form
* @title um_after_
{$mode}_fields
* @description Some actions after login form fields
* @description Some actions after login form fields
* @input_vars
* @input_vars
* [{"var":"$args","type":"array","desc":"Login form shortcode arguments"}]
* [{"var":"$args","type":"array","desc":"Login form shortcode arguments"}]
* @change_log
* @change_log
* ["Since: 2.0"]
* ["Since: 2.0"]
* @usage add_action( 'um_after_
form
', 'function_name', 10, 1 );
* @usage add_action( 'um_after_
{$mode}_fields
', 'function_name', 10, 1 );
* @example
* @example
* <?php
* <?php
* add_action( 'um_after_
form
', 'my_after_form
', 10, 1 );
* add_action( 'um_after_
{$mode}_fields
', 'my_after_form
_fields
', 10, 1 );
* function my_after_form
( $args ) {
* function my_after_form
_fields
( $args ) {
* // your code here
* // your code here
* }
* }
* ?>
* ?>
*/
*/
do_action(
'
um_after_
form'
, $args );
?>
do_action(
"
um_after_
{$mode}_fields"
, $args );
コピー
コピー済み
コピー
コピー済み
/**
* UM hook
*
* @type action
* @title um_after_form
* @description Some actions after login form fields
* @input_vars
* [{"var":"$args","type":"array","desc":"Login form shortcode arguments"}]
* @change_log
* ["Since: 2.0"]
* @usage add_action( 'um_after_form', 'function_name', 10, 1 );
* @example
* <?php
* add_action( 'um_after_form', 'my_after_form', 10, 1 );
* function my_after_form( $args ) {
* // your code here
* }
* ?>
*/
do_action( "um_after_form", $args ); ?>
</form>
</form>
</div>
</div>
</div>
</div>
コピー
コピー済み
コピー
コピー済み
保存された差分
原文
ファイルを開く
<?php /** * Template for the login form * * This template can be overridden by copying it to yourtheme/ultimate-member/templates/login.php * * Page: "Login" * * @version 2.6.1 * * @var string $mode * @var int $form_id * @var array $args */ if ( ! defined( 'ABSPATH' ) ) { exit; } ?> <div class="um <?php echo esc_attr( $this->get_class( $mode ) ); ?> um-<?php echo esc_attr( $form_id ); ?>"> <div class="um-form"> <form method="post" action="" autocomplete="off"> <?php /** * UM hook * * @type action * @title um_before_form * @description Some actions before login form * @input_vars * [{"var":"$args","type":"array","desc":"Login form shortcode arguments"}] * @change_log * ["Since: 2.0"] * @usage add_action( 'um_before_form', 'function_name', 10, 1 ); * @example * <?php * add_action( 'um_before_form', 'my_before_form', 10, 1 ); * function my_before_form( $args ) { * // your code here * } * ?> */ do_action( 'um_before_form', $args ); /** * UM hook * * @type action * @title um_before_{$mode}_fields * @description Some actions before login form fields * @input_vars * [{"var":"$args","type":"array","desc":"Login form shortcode arguments"}] * @change_log * ["Since: 2.0"] * @usage add_action( 'um_before_{$mode}_fields', 'function_name', 10, 1 ); * @example * <?php * add_action( 'um_before_{$mode}_fields', 'my_before_fields', 10, 1 ); * function my_before_form( $args ) { * // your code here * } * ?> */ do_action( "um_before_{$mode}_fields", $args ); /** * UM hook * * @type action * @title um_main_{$mode}_fields * @description Some actions before login form fields * @input_vars * [{"var":"$args","type":"array","desc":"Login form shortcode arguments"}] * @change_log * ["Since: 2.0"] * @usage add_action( 'um_before_{$mode}_fields', 'function_name', 10, 1 ); * @example * <?php * add_action( 'um_before_{$mode}_fields', 'my_before_fields', 10, 1 ); * function my_before_form( $args ) { * // your code here * } * ?> */ do_action( "um_main_{$mode}_fields", $args ); /** * UM hook * * @type action * @title um_after_form_fields * @description Some actions after login form fields * @input_vars * [{"var":"$args","type":"array","desc":"Login form shortcode arguments"}] * @change_log * ["Since: 2.0"] * @usage add_action( 'um_after_form_fields', 'function_name', 10, 1 ); * @example * <?php * add_action( 'um_after_form_fields', 'my_after_form_fields', 10, 1 ); * function my_after_form_fields( $args ) { * // your code here * } * ?> */ do_action( 'um_after_form_fields', $args ); /** * UM hook * * @type action * @title um_after_{$mode}_fields * @description Some actions after login form fields * @input_vars * [{"var":"$args","type":"array","desc":"Login form shortcode arguments"}] * @change_log * ["Since: 2.0"] * @usage add_action( 'um_after_{$mode}_fields', 'function_name', 10, 1 ); * @example * <?php * add_action( 'um_after_{$mode}_fields', 'my_after_form_fields', 10, 1 ); * function my_after_form_fields( $args ) { * // your code here * } * ?> */ do_action( "um_after_{$mode}_fields", $args ); /** * UM hook * * @type action * @title um_after_form * @description Some actions after login form fields * @input_vars * [{"var":"$args","type":"array","desc":"Login form shortcode arguments"}] * @change_log * ["Since: 2.0"] * @usage add_action( 'um_after_form', 'function_name', 10, 1 ); * @example * <?php * add_action( 'um_after_form', 'my_after_form', 10, 1 ); * function my_after_form( $args ) { * // your code here * } * ?> */ do_action( 'um_after_form', $args ); ?> </form> </div> </div>
変更されたテキスト
ファイルを開く
<div class="um <?php echo $this->get_class( $mode ); ?> um-<?php echo esc_attr( $form_id ); ?>"> <div class="um-form"> <form method="post" action="" autocomplete="off"> <?php /** * UM hook * * @type action * @title um_before_form * @description Some actions before login form * @input_vars * [{"var":"$args","type":"array","desc":"Login form shortcode arguments"}] * @change_log * ["Since: 2.0"] * @usage add_action( 'um_before_form', 'function_name', 10, 1 ); * @example * <?php * add_action( 'um_before_form', 'my_before_form', 10, 1 ); * function my_before_form( $args ) { * // your code here * } * ?> */ do_action( "um_before_form", $args ); /** * UM hook * * @type action * @title um_before_{$mode}_fields * @description Some actions before login form fields * @input_vars * [{"var":"$args","type":"array","desc":"Login form shortcode arguments"}] * @change_log * ["Since: 2.0"] * @usage add_action( 'um_before_{$mode}_fields', 'function_name', 10, 1 ); * @example * <?php * add_action( 'um_before_{$mode}_fields', 'my_before_fields', 10, 1 ); * function my_before_form( $args ) { * // your code here * } * ?> */ do_action( "um_before_{$mode}_fields", $args ); /** * UM hook * * @type action * @title um_main_{$mode}_fields * @description Some actions before login form fields * @input_vars * [{"var":"$args","type":"array","desc":"Login form shortcode arguments"}] * @change_log * ["Since: 2.0"] * @usage add_action( 'um_before_{$mode}_fields', 'function_name', 10, 1 ); * @example * <?php * add_action( 'um_before_{$mode}_fields', 'my_before_fields', 10, 1 ); * function my_before_form( $args ) { * // your code here * } * ?> */ do_action( "um_main_{$mode}_fields", $args ); /** * UM hook * * @type action * @title um_after_form_fields * @description Some actions after login form fields * @input_vars * [{"var":"$args","type":"array","desc":"Login form shortcode arguments"}] * @change_log * ["Since: 2.0"] * @usage add_action( 'um_after_form_fields', 'function_name', 10, 1 ); * @example * <?php * add_action( 'um_after_form_fields', 'my_after_form_fields', 10, 1 ); * function my_after_form_fields( $args ) { * // your code here * } * ?> */ do_action( "um_after_form_fields", $args ); /** * UM hook * * @type action * @title um_after_{$mode}_fields * @description Some actions after login form fields * @input_vars * [{"var":"$args","type":"array","desc":"Login form shortcode arguments"}] * @change_log * ["Since: 2.0"] * @usage add_action( 'um_after_{$mode}_fields', 'function_name', 10, 1 ); * @example * <?php * add_action( 'um_after_{$mode}_fields', 'my_after_form_fields', 10, 1 ); * function my_after_form_fields( $args ) { * // your code here * } * ?> */ do_action( "um_after_{$mode}_fields", $args ); /** * UM hook * * @type action * @title um_after_form * @description Some actions after login form fields * @input_vars * [{"var":"$args","type":"array","desc":"Login form shortcode arguments"}] * @change_log * ["Since: 2.0"] * @usage add_action( 'um_after_form', 'function_name', 10, 1 ); * @example * <?php * add_action( 'um_after_form', 'my_after_form', 10, 1 ); * function my_after_form( $args ) { * // your code here * } * ?> */ do_action( "um_after_form", $args ); ?> </form> </div> </div>
違いを見つける