個人用ツール

「ver4/関数リファレンス/BcBaser content」の版間の差分

提供: baserCMS公式ガイド

移動: 案内, 検索
行22: 行22:
 
<syntaxhighlight lang="html5">
 
<syntaxhighlight lang="html5">
 
エディタへ入力した内容が出力されます。
 
エディタへ入力した内容が出力されます。
</syntaxhighlight>
 
 
### 応用
 
####コード
 
<syntaxhighlight lang="php">
 
<div class="content">
 
  <?php $this->BcBaser->content() ?>
 
</div>
 
</syntaxhighlight>
 
 
####出力
 
<syntaxhighlight lang="html5">
 
<div class="content">
 
  <p>エディタへ入力した内容が出力されます。</p>
 
</div>
 
 
</syntaxhighlight>
 
</syntaxhighlight>

2018年12月13日 (木) 00:10時点における版

[このコンテンツは内容調整中です]

説明

コンテンツ本体を出力する。
レイアウトテンプレートで使用します。

使い方

<?php $this->BcBaser->content(); ?>

用例

基本

コンテンツ本体を出力する。

コード

<?php $this->BcBaser->content(); ?>

出力

エディタへ入力した内容が出力されます。