Pastebin
API
tools
faq
paste
Login
Sign up
Please fix the following errors:
New Paste
Syntax Highlighting
<?php /** * Single post content actions * * * @package Customizr * @subpackage classes * @since 3.0.5 * @author Nicolas GUILLAUME <nicolas@themesandco.com> * @copyright Copyright (c) 2013, Nicolas GUILLAUME * @link http://themesandco.com/customizr * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html */ class TC_post { //Access any method or var of the class with classname::$instance -> var or method(): static $instance; function __construct () { self::$instance =& $this; //posts parts actions add_action ( '__before_content' , array( $this , 'tc_post_header' )); add_action ( '__after_content' , array( $this , 'tc_post_footer' )); //add post header, content and footer to the __loop add_action ( '__loop' , array( $this , 'tc_post_content' )); //selector filter add_filter ( '__article_selectors' , array( $this , 'tc_post_selectors' )); } /** * Displays the conditional selectors of the article * * @package Customizr * @since 3.0.10 */ function tc_post_selectors () { //check conditional tags : we want to show single post or single custom post types global $post; if ( !isset($post) ) return; if ( 'page' == $post -> post_type || 'attachment' == $post -> post_type || !is_singular() ) return; tc__f('rec' , __FILE__ , __FUNCTION__, __CLASS__ ); echo 'id="post-'.get_the_ID().'" '.tc__f('__get_post_class' , 'row-fluid'); } /** * The template part for displaying the single posts header * * @package Customizr * @since Customizr 3.0 */ function tc_post_header() { //check conditional tags : we want to show single post or single custom post types global $post; if ( 'page' == $post -> post_type || 'attachment' == $post -> post_type || !is_singular() ) return; if ( tc__f( '__is_home_empty') ) return; if( in_array( get_post_format(), tc__f('post_type_with_no_headers') ) ) return; tc__f('rec' , __FILE__ , __FUNCTION__, __CLASS__ ); ob_start(); ?> <?php tc__f( 'tip' , __FUNCTION__ , __CLASS__, __FILE__ ); ?> <header class="entry-header"> <!-- hidden comment --> <?php $bubble_style = ( 0 == get_comments_number() ) ? 'style="color:#ECECEC" ':''; printf( '<h1 class="entry-title format-icon">%1$s %2$s %3$s</h1>' , get_the_title(), ( comments_open() && get_comments_number() != 0 && !post_password_required() ) ? '<span class="comments-link"> <a href="'.get_permalink().'#tc-comment-title" title="'.__( 'Comment(s) on ' , 'customizr' ).get_the_title().'"><span '.$bubble_style.' class="fs1 icon-bubble"></span><span class="inner">'.get_comments_number().'</span></a> </span>' : '', ((is_user_logged_in()) && current_user_can('edit_posts')) ? '<span class="edit-link btn btn-inverse btn-mini"><a class="post-edit-link" href="'.get_edit_post_link().'" title="'.__( 'Edit' , 'customizr' ).'">'.__( 'Edit' , 'customizr' ).'</a></span>' : '' ); ?> </header><!-- .entry-header --> <?php $html = ob_get_contents(); ob_end_clean(); echo apply_filters( 'tc_post_header', $html); } /** * The default template for displaying single post content * * @package Customizr * @since Customizr 3.0 */ function tc_post_content() { //check conditional tags : we want to show single post or single custom post types global $post; if ( !isset($post) ) return; if ( 'page' == $post -> post_type || 'attachment' == $post -> post_type || !is_singular() ) return; if ( tc__f( '__is_home_empty') ) return; tc__f('rec' , __FILE__ , __FUNCTION__, __CLASS__ ); //display an icon for div if there is no title $icon_class = in_array(get_post_format(), array( 'quote' , 'aside' , 'status' , 'link' )) ? 'format-icon':''; ob_start(); ?> <?php do_action( '__before_content' ); ?> <?php echo '<hr class="featurette-divider">' ?> <?php tc__f( 'tip' , __FUNCTION__ , __CLASS__, __FILE__ ); ?> <section class="entry-content <?php echo $icon_class ?>"> <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>' , 'customizr' ) ); ?> <?php wp_link_pages( array( 'before' => '<div class="pagination pagination-centered">' . __( 'Pages:' , 'customizr' ), 'after' => '</div>' ) ); ?> </section><!-- .entry-content --> <?php do_action( '__after_content' ) ?> <?php $html = ob_get_contents(); ob_end_clean(); echo apply_filters( 'tc_post_content', $html ); } /** * The template part for displaying the posts footer * * @package Customizr * @since Customizr 3.0 */ function tc_post_footer() { //check conditional tags : we want to show single post or single custom post types global $post; if ( 'page' == $post -> post_type || 'attachment' == $post -> post_type || !is_singular() ) return; if ( !is_singular() ) return; tc__f('rec' , __FILE__ , __FUNCTION__, __CLASS__ ); ob_start(); ?> <footer class="entry-meta"> <div class="entry-meta"> <?php //meta not displayed on home page, only in archive or search pages if ( !tc__f('__is_home') ) { do_action( '__post_metas' ); } ?> </div><!-- .entry-meta --> <?php if ( is_singular() && get_the_author_meta( 'description' ) ) : // If a user has filled out their description and this is a multi-author blog, show a bio on their entries. ?> <hr class="featurette-divider"> <div class="author-info"> <div class="row-fluid"> <div class="comment-avatar author-avatar span2"> <?php echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'tc_author_bio_avatar_size' , 100 ) ); ?> </div><!-- .author-avatar --> <div class="author-description span10"> <?php tc__f( 'tip' , __FUNCTION__ , __CLASS__, __FILE__ ); ?> <h2><?php printf( __( 'About %s' , 'customizr' ), get_the_author() ); ?></h2> <p><?php the_author_meta( 'description' ); ?></p> <div class="author-link"> <a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" rel="author"> <?php printf( __( 'View all posts by %s <span class="meta-nav">→</span>' , 'customizr' ), get_the_author() ); ?> </a> </div><!-- .author-link --> </div><!-- .author-description --> </div> </div><!-- .author-info --> <?php endif; ?> </footer><!-- .entry-meta --> <?php $html = ob_get_contents(); ob_end_clean(); echo apply_filters( 'tc_post_footer', $html ); } }//end of class
Optional Paste Settings
Category:
None
Cryptocurrency
Cybersecurity
Fixit
Food
Gaming
Haiku
Help
History
Housing
Jokes
Legal
Money
Movies
Music
Pets
Photo
Science
Software
Source Code
Spirit
Sports
Travel
TV
Writing
Tags:
Syntax Highlighting:
None
Bash
C
C#
C++
CSS
HTML
JSON
Java
JavaScript
Lua
Markdown (PRO members only)
Objective C
PHP
Perl
Python
Ruby
Swift
4CS
6502 ACME Cross Assembler
6502 Kick Assembler
6502 TASM/64TASS
ABAP
AIMMS
ALGOL 68
APT Sources
ARM
ASM (NASM)
ASP
ActionScript
ActionScript 3
Ada
Apache Log
AppleScript
Arduino
Asymptote
AutoIt
Autohotkey
Avisynth
Awk
BASCOM AVR
BNF
BOO
Bash
Basic4GL
Batch
BibTeX
Blitz Basic
Blitz3D
BlitzMax
BrainFuck
C
C (WinAPI)
C Intermediate Language
C for Macs
C#
C++
C++ (WinAPI)
C++ (with Qt extensions)
C: Loadrunner
CAD DCL
CAD Lisp
CFDG
CMake
COBOL
CSS
Ceylon
ChaiScript
Chapel
Clojure
Clone C
Clone C++
CoffeeScript
ColdFusion
Cuesheet
D
DCL
DCPU-16
DCS
DIV
DOT
Dart
Delphi
Delphi Prism (Oxygene)
Diff
E
ECMAScript
EPC
Easytrieve
Eiffel
Email
Erlang
Euphoria
F#
FO Language
Falcon
Filemaker
Formula One
Fortran
FreeBasic
FreeSWITCH
GAMBAS
GDB
GDScript
Game Maker
Genero
Genie
GetText
Go
Godot GLSL
Groovy
GwBasic
HQ9 Plus
HTML
HTML 5
Haskell
Haxe
HicEst
IDL
INI file
INTERCAL
IO
ISPF Panel Definition
Icon
Inno Script
J
JCL
JSON
Java
Java 5
JavaScript
Julia
KSP (Kontakt Script)
KiXtart
Kotlin
LDIF
LLVM
LOL Code
LScript
Latex
Liberty BASIC
Linden Scripting
Lisp
Loco Basic
Logtalk
Lotus Formulas
Lotus Script
Lua
M68000 Assembler
MIX Assembler
MK-61/52
MPASM
MXML
MagikSF
Make
MapBasic
Markdown (PRO members only)
MatLab
Mercury
MetaPost
Modula 2
Modula 3
Motorola 68000 HiSoft Dev
MySQL
Nagios
NetRexx
Nginx
Nim
NullSoft Installer
OCaml
OCaml Brief
Oberon 2
Objeck Programming Langua
Objective C
Octave
Open Object Rexx
OpenBSD PACKET FILTER
OpenGL Shading
Openoffice BASIC
Oracle 11
Oracle 8
Oz
PARI/GP
PCRE
PHP
PHP Brief
PL/I
PL/SQL
POV-Ray
ParaSail
Pascal
Pawn
Per
Perl
Perl 6
Phix
Pic 16
Pike
Pixel Bender
PostScript
PostgreSQL
PowerBuilder
PowerShell
ProFTPd
Progress
Prolog
Properties
ProvideX
Puppet
PureBasic
PyCon
Python
Python for S60
QBasic
QML
R
RBScript
REBOL
REG
RPM Spec
Racket
Rails
Rexx
Robots
Roff Manpage
Ruby
Ruby Gnuplot
Rust
SAS
SCL
SPARK
SPARQL
SQF
SQL
SSH Config
Scala
Scheme
Scilab
SdlBasic
Smalltalk
Smarty
StandardML
StoneScript
SuperCollider
Swift
SystemVerilog
T-SQL
TCL
TeXgraph
Tera Term
TypeScript
TypoScript
UPC
Unicon
UnrealScript
Urbi
VB.NET
VBScript
VHDL
VIM
Vala
Vedit
VeriLog
Visual Pro Log
VisualBasic
VisualFoxPro
WHOIS
WhiteSpace
Winbatch
XBasic
XML
XPP
Xojo
Xorg Config
YAML
YARA
Z80 Assembler
ZXBasic
autoconf
jQuery
mIRC
newLISP
q/kdb+
thinBasic
Paste Expiration:
Never
Burn after read
10 Minutes
1 Hour
1 Day
1 Week
2 Weeks
1 Month
6 Months
1 Year
Paste Exposure:
Public
Unlisted
Private
Folder:
(members only)
Password
NEW
Enabled
Disabled
Burn after read
NEW
Paste Name / Title:
Create New Paste
Hello
Guest
Sign Up
or
Login
Sign in with Facebook
Sign in with Twitter
Sign in with Google
You are currently not logged in, this means you can not edit or delete anything you paste.
Sign Up
or
Login
Public Pastes
Tttg
6 hours ago | 0.33 KB
OoT rando seed 6/6
6 hours ago | 68.46 KB
Symbol Dump for Discord
22 hours ago | 0.41 KB
tes
1 day ago | 0.02 KB
Untitled
1 day ago | 2.28 KB
GSA NS
1 day ago | 1.37 KB
WaterFul.m
MatLab | 2 days ago | 0.42 KB
WaterEmpty.m
MatLab | 2 days ago | 0.54 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!